<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Projects | AB</title><link>https://abraae.netlify.app/project/</link><atom:link href="https://abraae.netlify.app/project/index.xml" rel="self" type="application/rss+xml"/><description>Projects</description><generator>Wowchemy (https://wowchemy.com)</generator><language>en-us</language><copyright>© 2024 Anne Braae</copyright><lastBuildDate>Thu, 14 Oct 2021 00:00:00 +0000</lastBuildDate><image><url>https://abraae.netlify.app/media/icon_hue47c156e73b5b3ed02152e41aa91c5a8_26295_512x512_fill_lanczos_center_2.png</url><title>Projects</title><link>https://abraae.netlify.app/project/</link></image><item><title>XGBoost Star Classifier Pipeline</title><link>https://abraae.netlify.app/project/xgboost-star-classifier-pipeline/</link><pubDate>Thu, 14 Oct 2021 00:00:00 +0000</pubDate><guid>https://abraae.netlify.app/project/xgboost-star-classifier-pipeline/</guid><description>&lt;h1 id="classifying-stars">Classifying stars&lt;/h1>
&lt;p>Processed and balanced data obtained from &lt;a href="https://www.kaggle.com/vinesmsuic/star-categorization-giants-and-dwarfs" target="_blank" rel="noopener">Kaggle&lt;/a>&lt;/p>
&lt;p>I will use this data set to test out the XGBoost classifier. Information on the dataset is as follows (taken from the original &lt;a href="https://www.kaggle.com/vinesmsuic/star-categorization-giants-and-dwarfs" target="_blank" rel="noopener">Kaggle&lt;/a> entry):&lt;/p>
&lt;p>&amp;ldquo;Stellar Classification uses the spectral data of stars to categorize them into different categories.&lt;/p>
&lt;ul>
&lt;li>
&lt;p>The modern stellar classification system is known as the Morgan–Keenan (MK) classification system. It uses the old HR classification system to categorize
stars with their chromaticity and uses Roman numerals to categorize the star’s size.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>In this Dataset, we will be using Absolute Magnitude and B-V Color Index to identify Giants and Dwarfs (&lt;code>TargetClass&lt;/code>).&amp;rdquo;&lt;/p>
&lt;/li>
&lt;/ul>
&lt;p>Stars will be classified based on their &lt;code>TargetClass&lt;/code> as being either:&lt;/p>
&lt;ul>
&lt;li>Star is a Dwarf (0)&lt;/li>
&lt;li>Star is a Giant (1)&lt;/li>
&lt;/ul>
&lt;p>Note: This is a good dataset for learning about XGBoost, but it is not a good problem to solve with XGBoost as the number of features are relatively small and the problem is a simple binary classification problem.&lt;/p>
&lt;pre>&lt;code class="language-python">#load libraries
import pandas as pd
import numpy as np
from matplotlib import pyplot as plt
import seaborn as sns
from xgboost import XGBClassifier
from sklearn.model_selection import train_test_split, cross_val_score
from sklearn.pipeline import Pipeline
from sklearn.preprocessing import OneHotEncoder
from sklearn.compose import ColumnTransformer
from sklearn.ensemble import RandomForestClassifier
from sklearn.dummy import DummyClassifier
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import roc_auc_score
from sklearn.metrics import roc_curve
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">#read in zip file
star_df = pd.read_csv('data/Star39552_balanced.csv.zip')
&lt;/code>&lt;/pre>
&lt;h1 id="quick-eda">Quick EDA&lt;/h1>
&lt;pre>&lt;code class="language-python">star_df.describe(include='all')
&lt;/code>&lt;/pre>
&lt;div>
&lt;style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
&lt;pre>&lt;code>.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
&lt;/code>&lt;/pre>
&lt;p>&lt;/style>&lt;/p>
&lt;table border="1" class="dataframe">
&lt;thead>
&lt;tr style="text-align: right;">
&lt;th>&lt;/th>
&lt;th>Vmag&lt;/th>
&lt;th>Plx&lt;/th>
&lt;th>e_Plx&lt;/th>
&lt;th>B-V&lt;/th>
&lt;th>SpType&lt;/th>
&lt;th>Amag&lt;/th>
&lt;th>TargetClass&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;th>count&lt;/th>
&lt;td>39552.000000&lt;/td>
&lt;td>39552.000000&lt;/td>
&lt;td>39552.000000&lt;/td>
&lt;td>39552.000000&lt;/td>
&lt;td>39552&lt;/td>
&lt;td>39552.000000&lt;/td>
&lt;td>39552.000000&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>unique&lt;/th>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>2576&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>top&lt;/th>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>K0III&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>freq&lt;/th>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>2841&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>NaN&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>mean&lt;/th>
&lt;td>7.921309&lt;/td>
&lt;td>7.117378&lt;/td>
&lt;td>1.109705&lt;/td>
&lt;td>0.744336&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>16.050687&lt;/td>
&lt;td>0.500000&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>std&lt;/th>
&lt;td>1.308857&lt;/td>
&lt;td>12.446291&lt;/td>
&lt;td>0.788133&lt;/td>
&lt;td>0.513987&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>2.443937&lt;/td>
&lt;td>0.500006&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>min&lt;/th>
&lt;td>-0.620000&lt;/td>
&lt;td>-27.840000&lt;/td>
&lt;td>0.420000&lt;/td>
&lt;td>-0.400000&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>-0.350000&lt;/td>
&lt;td>0.000000&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>25%&lt;/th>
&lt;td>7.210000&lt;/td>
&lt;td>2.430000&lt;/td>
&lt;td>0.800000&lt;/td>
&lt;td>0.358000&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>14.756514&lt;/td>
&lt;td>0.000000&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>50%&lt;/th>
&lt;td>8.160000&lt;/td>
&lt;td>4.440000&lt;/td>
&lt;td>0.990000&lt;/td>
&lt;td>0.703000&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>16.020827&lt;/td>
&lt;td>0.500000&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>75%&lt;/th>
&lt;td>8.830000&lt;/td>
&lt;td>8.232500&lt;/td>
&lt;td>1.230000&lt;/td>
&lt;td>1.129000&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>17.590542&lt;/td>
&lt;td>1.000000&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>max&lt;/th>
&lt;td>12.850000&lt;/td>
&lt;td>772.330000&lt;/td>
&lt;td>40.630000&lt;/td>
&lt;td>3.440000&lt;/td>
&lt;td>NaN&lt;/td>
&lt;td>30.449015&lt;/td>
&lt;td>1.000000&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;/div>
&lt;p>All numeric apart from &lt;code>SPtype&lt;/code> and &lt;code>TargetClass&lt;/code> (which is numeric but only 0 or 1)&lt;/p>
&lt;pre>&lt;code class="language-python">#check missing
star_df.isnull().sum()
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Vmag 0
Plx 0
e_Plx 0
B-V 0
SpType 0
Amag 0
TargetClass 0
dtype: int64
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># pairs plot to have a look at the data
sns.pairplot(star_df,
hue = 'TargetClass',
palette = 'flare',
corner = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>&amp;lt;seaborn.axisgrid.PairGrid at 0x7ffb59557910&amp;gt;
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_10_1.png" alt="png">&lt;/p>
&lt;p>&lt;code>Pix&lt;/code> and &lt;code>e_Pix&lt;/code> look like they could do with being log transformed. For this initial run I am not going to do this.&lt;/p>
&lt;p>B-V is binomial for &lt;code>TargetClass&lt;/code>= 1 (giants)&lt;/p>
&lt;pre>&lt;code class="language-python">corr = star_df.corr()
corr_plot = sns.heatmap(
corr,
vmin=-1, vmax=1, center=0,
cmap=sns.diverging_palette(20, 220, n=200),
square=True
)
corr_plot.set_xticklabels(
corr_plot.get_xticklabels(),
rotation=45,
horizontalalignment='right'
);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_12_0.png" alt="png">&lt;/p>
&lt;p>&lt;code>B-V&lt;/code> and &lt;code>TargetClass&lt;/code> are strongly negatively correlated. &lt;code>Amag&lt;/code> and &lt;code>TargetClass&lt;/code> are moderately positively correlated. Other correlations appear fairly weak.&lt;/p>
&lt;h1 id="create-train-test-split">Create train test split&lt;/h1>
&lt;pre>&lt;code class="language-python">X = star_df.drop('TargetClass', axis=1)
y = star_df.TargetClass
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># list of predictor names for later labelling
X_names = list(X)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
&lt;/code>&lt;/pre>
&lt;p>Now prepare categorical columns for One-hot Encoding.&lt;/p>
&lt;pre>&lt;code class="language-python"># sort categorical columns from numeric
cat = (X_train.dtypes == 'object')
cat_cols = list(cat[cat].index)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>['SpType']
&lt;/code>&lt;/pre>
&lt;h1 id="start-building-the-pipeline">Start building the pipeline&lt;/h1>
&lt;pre>&lt;code class="language-python"># create one-hot encoder transformer
cat_transformer = Pipeline(steps=[
('onehot', OneHotEncoder(handle_unknown='ignore', sparse='False'))
])
# create preprocessor
preprocessor = ColumnTransformer(
transformers=[
('cat', cat_transformer, cat_cols)
])
&lt;/code>&lt;/pre>
&lt;h2 id="first-model---dummy-classifier">First model - Dummy classifier&lt;/h2>
&lt;pre>&lt;code class="language-python"># define initial dummy model
dummy_model = DummyClassifier(random_state=42)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">dummy_pipe = Pipeline(steps=[('preprocessor', preprocessor),
('model', dummy_model)])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># run the dummy pipeline
dummy_pipe.fit(X_train, y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Pipeline(steps=[('preprocessor',
ColumnTransformer(transformers=[('cat',
Pipeline(steps=[('onehot',
OneHotEncoder(handle_unknown='ignore',
sparse='False'))]),
['SpType'])])),
('model', DummyClassifier(random_state=42))])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># def model metrics for use in all models tried
# assumes train test split defined with X and y
def model_metrics(input_pipe):
print(&amp;quot;Training Accuracy&amp;quot;, (input_pipe.score(X_train, y_train)) * 100)
print(&amp;quot;Test Accuracy&amp;quot;, (input_pipe.score(X_test, y_test)) * 100)
y_pred_test = input_pipe.predict(X_test)
y_pred_train = input_pipe.predict(X_train)
print(&amp;quot;MAE train&amp;quot;, mean_absolute_error(y_train.astype('int'),
y_pred_train.astype('int')))
print(&amp;quot;MAE test&amp;quot;, mean_absolute_error(y_test.astype('int'),
y_pred_test.astype('int')))
print(&amp;quot;AUC train&amp;quot;, roc_auc_score(y_train, y_pred_train))
print(&amp;quot;AUC test&amp;quot;, roc_auc_score(y_test, y_pred_test))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">model_metrics(dummy_pipe)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Training Accuracy 50.26705856325654
Test Accuracy 48.93186702060422
MAE train 0.49732941436743466
MAE test 0.5106813297939578
AUC train 0.5
AUC test 0.5
&lt;/code>&lt;/pre>
&lt;p>As expected, the dummy classifier is no better than 50/50 guess!&lt;/p>
&lt;h2 id="second-model---random-forest">Second model - Random Forest&lt;/h2>
&lt;p>Note - This model is for comparision with XGBoost.
If I were training a random methodically, could use cross-validation (i.e. &lt;code>GridSearchCV&lt;/code>) to maximise AUC and tune the hyper-parameters to determine the optimal value from the search grid.&lt;/p>
&lt;p>Three parameters are important to tweak to avoid overfitting a random forest:&lt;/p>
&lt;ul>
&lt;li>&lt;code>n_estimators&lt;/code> - more trees reduces overfitting&lt;/li>
&lt;li>&lt;code>max_depth&lt;/code> - the deeper the tree the more the risk of overfitting&lt;/li>
&lt;li>&lt;code>min_samples_leaves&lt;/code> - the smaller the number of training exmples in the leave the greater the risk of overfitting&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-python">#use default settings for random forest
rf_model = RandomForestClassifier(random_state=42)
rf_pipe = Pipeline(steps=[('preprocessor', preprocessor),
('model', rf_model)])
# run the rf pipeline
rf_pipe.fit(X_train, y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Pipeline(steps=[('preprocessor',
ColumnTransformer(transformers=[('cat',
Pipeline(steps=[('onehot',
OneHotEncoder(handle_unknown='ignore',
sparse='False'))]),
['SpType'])])),
('model', RandomForestClassifier(random_state=42))])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># get model metrics
model_metrics(rf_pipe)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Training Accuracy 100.0
Test Accuracy 97.74996839843256
MAE train 0.0
MAE test 0.022500316015674378
AUC train 1.0
AUC test 0.977970297029703
&lt;/code>&lt;/pre>
&lt;p>Oh wow. This data is modelled extremely well with the random forest model. As I thought initially, this is not a good dataset for XGBoost. But it will give me good practice in setting up the pipelines to run the models.&lt;/p>
&lt;h2 id="third-model---xgboost">Third model - XGBoost&lt;/h2>
&lt;p>Extreme Gradient Boosting (XGBoost) uses gradient boosting framework.
Boosting uses weak learners (models), makes conclusions about feature importance and parameters and uses these to build better models by trying to reduce the error of the previous model.&lt;/p>
&lt;p>For XGBoost:&lt;/p>
&lt;ul>
&lt;li>The weak learner is a tree ensemble.&lt;/li>
&lt;li>The model has an inbuilt cross-validation function.&lt;/li>
&lt;li>It can handle missing values.&lt;/li>
&lt;/ul>
&lt;p>For this run I will use the scikit-learn API of XGBoost.&lt;/p>
&lt;ul>
&lt;li>note if use xgb version of XGBoost the data needs to be in DMatrices:&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-python"># example of native xgb
import xgboost as xgb
dtrain = xgb.DMatrix(X_train, label=y_train) #etc.
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">#use default settings for XGBoost, set eval_metric
xgb_model = XGBClassifier(use_label_encoder=False, eval_metric = 'mlogloss')
xgb_pipe = Pipeline(steps=[('preprocessor', preprocessor),
('model', xgb_model)])
# run the xgb pipeline
xgb_pipe.fit(X_train, y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Pipeline(steps=[('preprocessor',
ColumnTransformer(transformers=[('cat',
Pipeline(steps=[('onehot',
OneHotEncoder(handle_unknown='ignore',
sparse='False'))]),
['SpType'])])),
('model',
XGBClassifier(base_score=0.5, booster='gbtree',
colsample_bylevel=1, colsample_bynode=1,
colsample_bytree=1, eval_metric='mlogloss',
gamma=0, gpu_id=-1, importance_type='gain',
interaction_constraints='',
learning_rate=0.300000012, max_delta_step=0,
max_depth=6, min_child_weight=1, missing=nan,
monotone_constraints='()', n_estimators=100,
n_jobs=8, num_parallel_tree=1, random_state=0,
reg_alpha=0, reg_lambda=1, scale_pos_weight=1,
subsample=1, tree_method='exact',
use_label_encoder=False, validate_parameters=1,
verbosity=None))])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># get model metrics
model_metrics(xgb_pipe)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Training Accuracy 91.75436933093138
Test Accuracy 92.01112375173808
MAE train 0.08245630669068614
MAE test 0.07988876248261914
AUC train 0.9179817667400189
AUC test 0.9183673469387755
&lt;/code>&lt;/pre>
&lt;p>XGBoost straight out of the box is performing reasonably well, but it is not as good as the random forest. Try tuning the hyperparameters to get a better model.&lt;/p>
&lt;p>Hyperparameters we can tune include:&lt;/p>
&lt;ul>
&lt;li>&lt;code>n_estimators&lt;/code> - same as the random forest this is the number of models in the ensemble&lt;/li>
&lt;li>&lt;code>learning_rate&lt;/code> - shrinks the feature weights on each step to prevent overfitting. Default is 0.1. Lowering this reduces how much the model retrains and can help prevent overfitting, however a lower learning rate also needs more boosting rounds and increases training time&lt;/li>
&lt;li>&lt;code>objective&lt;/code> - defines the loss function to be minimised&lt;/li>
&lt;li>&lt;code>early_stopping_rounds&lt;/code> - not used in the parameter tuning below. This helps prevent overfitting by assessing the performance of the model at each round and stopping the model if performance hasn&amp;rsquo;t improved by the number of rounds set by this parameter&lt;/li>
&lt;/ul>
&lt;p>To have a look I am going to change some of the hyperparameters discussed above, but a more robust way to tune hyperparameters is with the &lt;code>cv&lt;/code> function from XGBoost. This lets you run cross-validation on the training dataset and returns a mean MAE score.&lt;br />&lt;br />
To do this the data would need to be in XGBoost format and we would need to be running the &lt;code>xgb&lt;/code> version of &lt;code>xgboost&lt;/code>.&lt;/p>
&lt;pre>&lt;code class="language-python"># declare parameters to be tuned
param = {
'objective': 'binary:logistic',
'max_depth': 4,
'alpha': 10,
'learning_rate': 0.15,
'n_estimators': 1000,
'use_label_encoder': False,
'eval_metric': 'mlogloss'
}
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">#use parameters for XGBoost, set eval_metric
xgb_param_model = XGBClassifier(**param)
xgb_param_pipe = Pipeline(steps=[('preprocessor', preprocessor),
('model', xgb_param_model)])
# run the pipeline
xgb_param_pipe.fit(X_train, y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Pipeline(steps=[('preprocessor',
ColumnTransformer(transformers=[('cat',
Pipeline(steps=[('onehot',
OneHotEncoder(handle_unknown='ignore',
sparse='False'))]),
['SpType'])])),
('model',
XGBClassifier(alpha=10, base_score=0.5, booster='gbtree',
colsample_bylevel=1, colsample_bynode=1,
colsample_bytree=1, eval_metric='mlogloss',
gamma=0, gpu_id=-1, importance_type='gain',
interaction_constraints='', learning_rate=0.15,
max_delta_step=0, max_depth=4,
min_child_weight=1, missing=nan,
monotone_constraints='()', n_estimators=1000,
n_jobs=8, num_parallel_tree=1, random_state=0,
reg_alpha=10, reg_lambda=1, scale_pos_weight=1,
subsample=1, tree_method='exact',
use_label_encoder=False, validate_parameters=1,
verbosity=None))])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># get model metrics
model_metrics(xgb_param_pipe)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Training Accuracy 91.06538984229323
Test Accuracy 91.22740487928202
MAE train 0.08934610157706772
MAE test 0.08772595120717988
AUC train 0.9111285759195222
AUC test 0.9103590803409971
&lt;/code>&lt;/pre>
&lt;p>Adding the parameters has made the model worse! Another sign that the XGBoost model really isn&amp;rsquo;t the model for this data.&lt;/p>
&lt;h2 id="roc-comparison-of-models">ROC comparison of models&lt;/h2>
&lt;p>To compare the models run on the data so far, I will finish this off with a ROC comparison plot of all models.&lt;/p>
&lt;pre>&lt;code class="language-python">plt.figure(0).clf()
# add pipes for ROC
pipes = [
{
'label':'Dummy Classifier',
'pipe': dummy_pipe,
},
{
'label':'Random Forest',
'pipe': rf_pipe,
},
{
'label':'XGBoost',
'pipe': xgb_pipe,
},
{
'label':'XGBoost + parameters',
'pipe': xgb_param_pipe,
}
]
# iterate through pipes and plot
for p in pipes:
pipe = p['pipe']
y_pred=pipe.predict(X_test)
fpr, tpr, thresholds = roc_curve(y_test, pipe.predict_proba(X_test)[:,1])
auc = roc_auc_score(y_test, y_pred)
plt.plot(fpr, tpr, label='%s ROC (area = %0.2f)' % (p['label'], auc))
plt.plot([0, 1], [0, 1],'k--')
plt.xlim([0.0, 1.0])
plt.ylim([0.0, 1.05])
plt.xlabel('1-Specificity(False Positive Rate)')
plt.ylabel('Sensitivity(True Positive Rate)')
plt.title('Receiver Operating Characteristic')
plt.legend(loc=&amp;quot;lower right&amp;quot;)
plt.show()
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_45_0.png" alt="png">&lt;/p>
&lt;h1 id="summary">Summary&lt;/h1>
&lt;ul>
&lt;li>Initial run of XGBoost&lt;/li>
&lt;li>Addition of parameter feature tweak to XGBoost&lt;/li>
&lt;li>Random forest outperformed XGBoost on this data&lt;/li>
&lt;li>Highlights the importance of selecting data-appropriate models&lt;/li>
&lt;/ul>
&lt;h1 id="future-runs">Future runs&lt;/h1>
&lt;ul>
&lt;li>Include CV (cross-validation) for hyperparameter tuning&lt;/li>
&lt;li>Remember that if you are running predictions - once you have the best model, run it again on all the data&lt;/li>
&lt;/ul></description></item><item><title>Modelling flight delays for Newark Airport</title><link>https://abraae.netlify.app/project/flight-delays-part-2/</link><pubDate>Fri, 01 Oct 2021 00:00:00 +0000</pubDate><guid>https://abraae.netlify.app/project/flight-delays-part-2/</guid><description>&lt;p>This is my final end to end data project for CodeClan. Written in Python in Jupyter Notebooks. The aim was to provide data-driven exploratory analysis to provide insight on the impact of weather on flight delays. To achieve this I did an exploratory data analysis and modelling. This entry contains the modelling.&lt;/p>
&lt;h1 id="random-forest-modeling">Random Forest Modeling&lt;/h1>
&lt;p>This model was selected for the following reasons:&lt;/p>
&lt;ul>
&lt;li>several groups have used this model to successfully model flight delays &lt;a href="https://ieeexplore.ieee.org/abstract/document/9256474" target="_blank" rel="noopener">example&lt;/a>&lt;/li>
&lt;li>it is relatively easy to interpret&lt;/li>
&lt;li>the relative feature importance can be used to determine features important for delays&lt;/li>
&lt;/ul>
&lt;p>A Random Forest Classifier was used as I classified flights as delayed (1) or not delayed (0) according to the Bureau of Transport Statistics &lt;a href="https://www.bts.gov/explore-topics-and-geography/topics/airline-time-performance-and-causes-flight-delays" target="_blank" rel="noopener">rules&lt;/a>. These state that a flight is delayed if it is late by 15 minutes or more.&lt;/p>
&lt;p>Outline of method:&lt;/p>
&lt;ul>
&lt;li>perform a test/train split on the dataset&lt;/li>
&lt;li>set a baseline model for comparison&lt;/li>
&lt;li>perform wrapper method of feature selection
&lt;ul>
&lt;li>run a model with all the data&lt;/li>
&lt;li>use the feature importance scores to remove one feature at a time&lt;/li>
&lt;li>this is the backwards elimination method&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>check the final model&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-python">ewr_model_data.head()
&lt;/code>&lt;/pre>
&lt;div>
&lt;style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
&lt;pre>&lt;code>.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
&lt;/code>&lt;/pre>
&lt;p>&lt;/style>&lt;/p>
&lt;table border="1" class="dataframe">
&lt;thead>
&lt;tr style="text-align: right;">
&lt;th>&lt;/th>
&lt;th>origin&lt;/th>
&lt;th>air_time&lt;/th>
&lt;th>distance&lt;/th>
&lt;th>hour&lt;/th>
&lt;th>dep_delay_true&lt;/th>
&lt;th>wind_dir&lt;/th>
&lt;th>wind_speed&lt;/th>
&lt;th>visib&lt;/th>
&lt;th>temp_ave&lt;/th>
&lt;th>temp_departure&lt;/th>
&lt;th>...&lt;/th>
&lt;th>new_snow&lt;/th>
&lt;th>snow_depth&lt;/th>
&lt;th>dest_airport&lt;/th>
&lt;th>dest_alt&lt;/th>
&lt;th>carrier_name&lt;/th>
&lt;th>manufacturer&lt;/th>
&lt;th>engine&lt;/th>
&lt;th>wind_scale&lt;/th>
&lt;th>month_flag&lt;/th>
&lt;th>weekday&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;th>0&lt;/th>
&lt;td>EWR&lt;/td>
&lt;td>136.0&lt;/td>
&lt;td>937&lt;/td>
&lt;td>5&lt;/td>
&lt;td>False&lt;/td>
&lt;td>220.0&lt;/td>
&lt;td>11.5078&lt;/td>
&lt;td>10.0&lt;/td>
&lt;td>41.5&lt;/td>
&lt;td>7.2&lt;/td>
&lt;td>...&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>Orlando International Airport&lt;/td>
&lt;td>96.0&lt;/td>
&lt;td>JetBlue Airways&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;td>Jan&lt;/td>
&lt;td>Sunday&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>1&lt;/th>
&lt;td>EWR&lt;/td>
&lt;td>45.0&lt;/td>
&lt;td>212&lt;/td>
&lt;td>5&lt;/td>
&lt;td>False&lt;/td>
&lt;td>220.0&lt;/td>
&lt;td>11.5078&lt;/td>
&lt;td>10.0&lt;/td>
&lt;td>41.5&lt;/td>
&lt;td>7.2&lt;/td>
&lt;td>...&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>Washington Dulles International Airport&lt;/td>
&lt;td>312.0&lt;/td>
&lt;td>United Air Lines Inc.&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;td>Jan&lt;/td>
&lt;td>Sunday&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>2&lt;/th>
&lt;td>EWR&lt;/td>
&lt;td>154.0&lt;/td>
&lt;td>1085&lt;/td>
&lt;td>6&lt;/td>
&lt;td>False&lt;/td>
&lt;td>230.0&lt;/td>
&lt;td>10.9300&lt;/td>
&lt;td>10.0&lt;/td>
&lt;td>41.5&lt;/td>
&lt;td>7.2&lt;/td>
&lt;td>...&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>Miami International Airport&lt;/td>
&lt;td>8.0&lt;/td>
&lt;td>American Airlines Inc.&lt;/td>
&lt;td>Unknown&lt;/td>
&lt;td>Unknown&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;td>Jan&lt;/td>
&lt;td>Sunday&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>3&lt;/th>
&lt;td>EWR&lt;/td>
&lt;td>153.0&lt;/td>
&lt;td>1065&lt;/td>
&lt;td>6&lt;/td>
&lt;td>False&lt;/td>
&lt;td>230.0&lt;/td>
&lt;td>10.9300&lt;/td>
&lt;td>10.0&lt;/td>
&lt;td>41.5&lt;/td>
&lt;td>7.2&lt;/td>
&lt;td>...&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>Fort Lauderdale Hollywood International Airport&lt;/td>
&lt;td>9.0&lt;/td>
&lt;td>JetBlue Airways&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;td>Jan&lt;/td>
&lt;td>Sunday&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>4&lt;/th>
&lt;td>EWR&lt;/td>
&lt;td>42.0&lt;/td>
&lt;td>200&lt;/td>
&lt;td>6&lt;/td>
&lt;td>True&lt;/td>
&lt;td>230.0&lt;/td>
&lt;td>10.9300&lt;/td>
&lt;td>10.0&lt;/td>
&lt;td>41.5&lt;/td>
&lt;td>7.2&lt;/td>
&lt;td>...&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>General Edward Lawrence Logan International Ai...&lt;/td>
&lt;td>20.0&lt;/td>
&lt;td>United Air Lines Inc.&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;td>Jan&lt;/td>
&lt;td>Sunday&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>5 rows × 21 columns&lt;/p>
&lt;/div>
&lt;pre>&lt;code class="language-python">from sklearn.ensemble import RandomForestClassifier
from sklearn.model_selection import train_test_split
from sklearn.tree import plot_tree
from sklearn.tree import export_text
from sklearn.metrics import confusion_matrix
from sklearn.metrics import mean_absolute_error
from sklearn.metrics import roc_auc_score
from sklearn.inspection import permutation_importance
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">ewr_model_data.reset_index(drop=True, inplace=True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">ewr_model_data_trim = ewr_model_data.drop(columns=['air_time', 'wind_scale', 'origin', 'dest_alt']).copy()
ewr_model_data_trim.dropna(inplace=True)
&lt;/code>&lt;/pre>
&lt;h2 id="1-model-test-with-all-the-data">1. Model test with all the data&lt;/h2>
&lt;pre>&lt;code class="language-python"># one hot encoding
ewr_model_data_trim = pd.get_dummies(ewr_model_data_trim)
# split into predictors and response
ewr_predictors = ewr_model_data_trim.drop(columns = 'dep_delay_true')
ewr_response = ewr_model_data_trim['dep_delay_true']
# list of predictor names for later labelling
ewr_X_names = list(ewr_predictors)
# convert to numpy arrays for modelling
ewr_predictors = np.nan_to_num(ewr_predictors.astype(np.float32))
ewr_response = np.array(ewr_response)
# split data into test and train
# stratify on response as it is skewed 24% to 76%
ewr_X_train, ewr_X_test, ewr_y_train, ewr_y_test = \
train_test_split(ewr_predictors, ewr_response, test_size = 0.2,
random_state = 42,
stratify = ewr_response)
&lt;/code>&lt;/pre>
&lt;h3 id="establish-a-baseline-model">Establish a baseline model&lt;/h3>
&lt;p>Use a dummy classifier to test if the Random Forest model improves on the predictions.&lt;/p>
&lt;pre>&lt;code class="language-python">from sklearn.dummy import DummyClassifier
clf_dummy = DummyClassifier(random_state=42)
clf_dummy.fit(ewr_X_train, ewr_y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>DummyClassifier(random_state=42)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># model metrics for baseline model
print(&amp;quot;Accuracy&amp;quot;, (clf_dummy.score(ewr_X_test, ewr_y_test)) * 100)
ewr_y_pred_test = clf_dummy.predict(ewr_X_test)
ewr_y_pred_train = clf_dummy.predict(ewr_X_train)
print(&amp;quot;MAE train&amp;quot;, mean_absolute_error(ewr_y_train.astype('int'),
ewr_y_pred_train.astype('int')))
print(&amp;quot;MAE test&amp;quot;, mean_absolute_error(ewr_y_test.astype('int'),
ewr_y_pred_test.astype('int')))
print(&amp;quot;AUC train&amp;quot;, roc_auc_score(ewr_y_train, ewr_y_pred_train))
print(&amp;quot;AUC test&amp;quot;, roc_auc_score(ewr_y_test, ewr_y_pred_test))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Accuracy 76.02925243770315
MAE train 0.23969031442565966
MAE test 0.23970747562296857
AUC train 0.5
AUC test 0.5
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">ewr_model_all = RandomForestClassifier(
n_estimators = 1000, #increase estimators to find a better model
min_samples_leaf=5, #set at 5 to remove effects of overfitting
random_state = 42)
ewr_model_all.fit(ewr_X_train, ewr_y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>RandomForestClassifier(min_samples_leaf=5, n_estimators=1000, random_state=42)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">print(&amp;quot;Training Accuracy&amp;quot;, (ewr_model_all.score(ewr_X_train, ewr_y_train)) * 100)
# model metrics for weather variable model
print(&amp;quot;Test Accuracy&amp;quot;, (ewr_model_all.score(ewr_X_test, ewr_y_test)) * 100)
ewr_y_pred_test = ewr_model_all.predict(ewr_X_test)
ewr_y_pred_train = ewr_model_all.predict(ewr_X_train)
print(&amp;quot;MAE train&amp;quot;, mean_absolute_error(ewr_y_train.astype('int'),
ewr_y_pred_train.astype('int')))
print(&amp;quot;MAE test&amp;quot;, mean_absolute_error(ewr_y_test.astype('int'),
ewr_y_pred_test.astype('int')))
print(&amp;quot;AUC train&amp;quot;, roc_auc_score(ewr_y_train, ewr_y_pred_train))
print(&amp;quot;AUC test&amp;quot;, roc_auc_score(ewr_y_test, ewr_y_pred_test))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Training Accuracy 83.71780692052457
Test Accuracy 79.92957746478874
MAE train 0.1628219307947543
MAE test 0.2007042253521127
AUC train 0.6811129449503028
AUC test 0.6208141872920605
&lt;/code>&lt;/pre>
&lt;p>This model does not improve much on the baseline model. It is also overfitting the data (shown by the higher scores for accuracy and AUC for the training dataset and the lower scores in mean absolute error (MAE)).&lt;/p>
&lt;p>Let&amp;rsquo;s look at the confusion matrix&lt;/p>
&lt;pre>&lt;code class="language-python">mat = confusion_matrix(ewr_y_test, ewr_y_pred_test)
sns.heatmap(mat.T, square = True, annot = True, fmt = 'd', cbar = False)
plt.xlabel('true label')
plt.ylabel('predicted label');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_82_0.png" alt="png">&lt;/p>
&lt;p>The model is struggling to predict true positive values (i.e. it is not predicting delayed flights well). This is most likely because the data is biased. 76% of the flights are not delayed and 24% of the flights are delayed.&lt;/p>
&lt;pre>&lt;code class="language-python"># get numerical feature importances
importances = list(ewr_model_all.feature_importances_)
# list of tuples with variable and importance
feature_importances = [(feature, round(importance, 2)) for feature,
importance in zip(ewr_X_names, importances)]
# sort the feature importances by most important first
feature_importances = sorted(feature_importances, key = lambda x: x[1], reverse = True)
# print out the feature and importances
[print('Variable: {:20} Importance: {}'.format(*pair)) for pair in feature_importances];
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Variable: wind_speed Importance: 0.09
Variable: temp_ave Importance: 0.07
Variable: ppt Importance: 0.07
Variable: wind_dir Importance: 0.06
Variable: temp_departure Importance: 0.06
Variable: distance Importance: 0.05
Variable: hour_19 Importance: 0.04
Variable: hour_20 Importance: 0.04
Variable: hour_6 Importance: 0.03
Variable: hour_17 Importance: 0.03
Variable: hour_18 Importance: 0.03
Variable: visib Importance: 0.02
Variable: hour_7 Importance: 0.02
Variable: hour_8 Importance: 0.02
Variable: hour_21 Importance: 0.02
Variable: new_snow Importance: 0.01
Variable: snow_depth Importance: 0.01
Variable: hour_9 Importance: 0.01
Variable: hour_10 Importance: 0.01
Variable: hour_11 Importance: 0.01
Variable: hour_12 Importance: 0.01
Variable: hour_13 Importance: 0.01
Variable: hour_14 Importance: 0.01
Variable: hour_15 Importance: 0.01
Variable: hour_16 Importance: 0.01
Variable: carrier_name_JetBlue Airways Importance: 0.01
Variable: carrier_name_United Air Lines Inc. Importance: 0.01
Variable: manufacturer_AIRBUS Importance: 0.01
Variable: manufacturer_BOEING Importance: 0.01
Variable: manufacturer_EMBRAER Importance: 0.01
Variable: month_flag_Apr Importance: 0.01
Variable: month_flag_Aug Importance: 0.01
Variable: month_flag_Jan Importance: 0.01
Variable: month_flag_Jul Importance: 0.01
Variable: month_flag_Jun Importance: 0.01
Variable: month_flag_Mar Importance: 0.01
Variable: month_flag_May Importance: 0.01
Variable: month_flag_Nov Importance: 0.01
Variable: month_flag_Oct Importance: 0.01
Variable: month_flag_Sep Importance: 0.01
Variable: weekday_Friday Importance: 0.01
Variable: weekday_Monday Importance: 0.01
Variable: weekday_Saturday Importance: 0.01
Variable: weekday_Sunday Importance: 0.01
Variable: weekday_Thursday Importance: 0.01
Variable: weekday_Tuesday Importance: 0.01
Variable: weekday_Wednesday Importance: 0.01
Variable: hour_1 Importance: 0.0
Variable: hour_5 Importance: 0.0
Variable: hour_22 Importance: 0.0
Variable: hour_23 Importance: 0.0
Variable: dest_airport_Akron Canton Regional Airport Importance: 0.0
Variable: dest_airport_Albany International Airport Importance: 0.0
Variable: dest_airport_Asheville Regional Airport Importance: 0.0
Variable: dest_airport_Austin Bergstrom International Airport Importance: 0.0
Variable: dest_airport_Baltimore/Washington International Thurgood Marshall Airport Importance: 0.0
Variable: dest_airport_Bangor International Airport Importance: 0.0
Variable: dest_airport_Bishop International Airport Importance: 0.0
Variable: dest_airport_Blue Grass Airport Importance: 0.0
Variable: dest_airport_Bradley International Airport Importance: 0.0
Variable: dest_airport_Buffalo Niagara International Airport Importance: 0.0
Variable: dest_airport_Burlington International Airport Importance: 0.0
Variable: dest_airport_Charleston Air Force Base-International Airport Importance: 0.0
Variable: dest_airport_Charlotte Douglas International Airport Importance: 0.0
Variable: dest_airport_Cherry Capital Airport Importance: 0.0
Variable: dest_airport_Chicago Midway International Airport Importance: 0.0
Variable: dest_airport_Chicago O'Hare International Airport Importance: 0.0
Variable: dest_airport_Cincinnati Northern Kentucky International Airport Importance: 0.0
Variable: dest_airport_Cleveland Hopkins International Airport Importance: 0.0
Variable: dest_airport_Dallas Fort Worth International Airport Importance: 0.0
Variable: dest_airport_Dane County Regional Truax Field Importance: 0.0
Variable: dest_airport_Denver International Airport Importance: 0.0
Variable: dest_airport_Des Moines International Airport Importance: 0.0
Variable: dest_airport_Detroit Metropolitan Wayne County Airport Importance: 0.0
Variable: dest_airport_Eagle County Regional Airport Importance: 0.0
Variable: dest_airport_Eppley Airfield Importance: 0.0
Variable: dest_airport_Fort Lauderdale Hollywood International Airport Importance: 0.0
Variable: dest_airport_Fort Wayne International Airport Importance: 0.0
Variable: dest_airport_Gallatin Field Importance: 0.0
Variable: dest_airport_General Edward Lawrence Logan International Airport Importance: 0.0
Variable: dest_airport_General Mitchell International Airport Importance: 0.0
Variable: dest_airport_George Bush Intercontinental Houston Airport Importance: 0.0
Variable: dest_airport_Gerald R. Ford International Airport Importance: 0.0
Variable: dest_airport_Greater Rochester International Airport Importance: 0.0
Variable: dest_airport_Greenville Spartanburg International Airport Importance: 0.0
Variable: dest_airport_Hartsfield Jackson Atlanta International Airport Importance: 0.0
Variable: dest_airport_Honolulu International Airport Importance: 0.0
Variable: dest_airport_Indianapolis International Airport Importance: 0.0
Variable: dest_airport_Jackson Hole Airport Importance: 0.0
Variable: dest_airport_Jacksonville International Airport Importance: 0.0
Variable: dest_airport_James M Cox Dayton International Airport Importance: 0.0
Variable: dest_airport_John Wayne Airport-Orange County Airport Importance: 0.0
Variable: dest_airport_Kansas City International Airport Importance: 0.0
Variable: dest_airport_Lambert St Louis International Airport Importance: 0.0
Variable: dest_airport_Los Angeles International Airport Importance: 0.0
Variable: dest_airport_Louis Armstrong New Orleans International Airport Importance: 0.0
Variable: dest_airport_Louisville International Standiford Field Importance: 0.0
Variable: dest_airport_Lovell Field Importance: 0.0
Variable: dest_airport_Manchester Airport Importance: 0.0
Variable: dest_airport_McCarran International Airport Importance: 0.0
Variable: dest_airport_McGhee Tyson Airport Importance: 0.0
Variable: dest_airport_Memphis International Airport Importance: 0.0
Variable: dest_airport_Metropolitan Oakland International Airport Importance: 0.0
Variable: dest_airport_Miami International Airport Importance: 0.0
Variable: dest_airport_Minneapolis-St Paul International/Wold-Chamberlain Airport Importance: 0.0
Variable: dest_airport_Montrose Regional Airport Importance: 0.0
Variable: dest_airport_Myrtle Beach International Airport Importance: 0.0
Variable: dest_airport_Nashville International Airport Importance: 0.0
Variable: dest_airport_Norfolk International Airport Importance: 0.0
Variable: dest_airport_Norman Y. Mineta San Jose International Airport Importance: 0.0
Variable: dest_airport_Northwest Arkansas Regional Airport Importance: 0.0
Variable: dest_airport_Orlando International Airport Importance: 0.0
Variable: dest_airport_Palm Beach International Airport Importance: 0.0
Variable: dest_airport_Phoenix Sky Harbor International Airport Importance: 0.0
Variable: dest_airport_Piedmont Triad International Airport Importance: 0.0
Variable: dest_airport_Pittsburgh International Airport Importance: 0.0
Variable: dest_airport_Port Columbus International Airport Importance: 0.0
Variable: dest_airport_Portland International Airport Importance: 0.0
Variable: dest_airport_Portland International Jetport Airport Importance: 0.0
Variable: dest_airport_Raleigh Durham International Airport Importance: 0.0
Variable: dest_airport_Richmond International Airport Importance: 0.0
Variable: dest_airport_Ronald Reagan Washington National Airport Importance: 0.0
Variable: dest_airport_Sacramento International Airport Importance: 0.0
Variable: dest_airport_Salt Lake City International Airport Importance: 0.0
Variable: dest_airport_San Antonio International Airport Importance: 0.0
Variable: dest_airport_San Diego International Airport Importance: 0.0
Variable: dest_airport_San Francisco International Airport Importance: 0.0
Variable: dest_airport_Sarasota Bradenton International Airport Importance: 0.0
Variable: dest_airport_Savannah Hilton Head International Airport Importance: 0.0
Variable: dest_airport_Seattle Tacoma International Airport Importance: 0.0
Variable: dest_airport_South Bend Regional Airport Importance: 0.0
Variable: dest_airport_Southwest Florida International Airport Importance: 0.0
Variable: dest_airport_Syracuse Hancock International Airport Importance: 0.0
Variable: dest_airport_Tampa International Airport Importance: 0.0
Variable: dest_airport_Ted Stevens Anchorage International Airport Importance: 0.0
Variable: dest_airport_Theodore Francis Green State Airport Importance: 0.0
Variable: dest_airport_Washington Dulles International Airport Importance: 0.0
Variable: dest_airport_Wilkes Barre Scranton International Airport Importance: 0.0
Variable: dest_airport_Yampa Valley Airport Importance: 0.0
Variable: carrier_name_Alaska Airlines Inc. Importance: 0.0
Variable: carrier_name_American Airlines Inc. Importance: 0.0
Variable: carrier_name_Delta Air Lines Inc. Importance: 0.0
Variable: carrier_name_ExpressJet Airlines Inc. Importance: 0.0
Variable: carrier_name_SkyWest Airlines Inc. Importance: 0.0
Variable: carrier_name_Southwest Airlines Co. Importance: 0.0
Variable: carrier_name_Spirit Air Lines Importance: 0.0
Variable: carrier_name_Virgin America Importance: 0.0
Variable: manufacturer_BOMBARDIER INC Importance: 0.0
Variable: manufacturer_MCDONNELL DOUGLAS Importance: 0.0
Variable: manufacturer_Other Importance: 0.0
Variable: manufacturer_Unknown Importance: 0.0
Variable: engine_2 Cycle Importance: 0.0
Variable: engine_4 Cycle Importance: 0.0
Variable: engine_Electric Importance: 0.0
Variable: engine_Reciprocating Importance: 0.0
Variable: engine_Turbo-fan Importance: 0.0
Variable: engine_Turbo-jet Importance: 0.0
Variable: engine_Turbo-prop Importance: 0.0
Variable: engine_Turbo-shaft Importance: 0.0
Variable: engine_Unknown Importance: 0.0
Variable: month_flag_Dec Importance: 0.0
Variable: month_flag_Feb Importance: 0.0
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># make feature importance plot
features = ewr_X_names
importances = ewr_model_all.feature_importances_
indices = np.argsort(importances)
# customized number
num_features = 15
plt.figure(figsize=(5, 4))
plt.title('Feature Importances')
# only plot the customized number of features
plt.barh(range(num_features),
importances[indices[-num_features:]], color='#49006a', align='center'
)
plt.yticks(range(num_features), [features[i] for i in indices[-num_features:]])
plt.xlabel('Relative Importance')
plt.show()
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_85_0.png" alt="png">&lt;/p>
&lt;p>Two weather factors, &lt;code>wind_speed&lt;/code> and precipitation (&lt;code>ppt&lt;/code>) are important for predicting delays. As is temperature (&lt;code>temp_ave&lt;/code> and &lt;code>temp_departure&lt;/code>), wind direction (&lt;code>wind_dir&lt;/code>) and visibility (&lt;code>visib&lt;/code>).&lt;/p>
&lt;p>For non-weather related factors, hour of departure and distance are also important.&lt;/p>
&lt;p>I will have a look at the permutation feature importance. Permutation feature importance measures how important a feature is after permuting (&amp;lsquo;shuffling&amp;rsquo; the data). If permutation of the feature causes an increase in model error then this feature is important. On the other hand if permutation does not affect model error then this feature is not important for the model.&lt;/p>
&lt;p>IMPORTANT - Features are scored on their importance for a particular model. This importance can change if you train a different model and unimportant features can become important.&lt;/p>
&lt;pre>&lt;code class="language-python"># permutation importance
result = permutation_importance(ewr_model_all, ewr_X_test, ewr_y_test, n_repeats=10,
random_state=42, n_jobs=2)
for i in result.importances_mean.argsort()[::-1]:
if result.importances_mean[i] - 2 * result.importances_std[i] &amp;gt; 0:
print(f&amp;quot;{ewr_X_names[i]:&amp;lt;8}&amp;quot;
f&amp;quot;{result.importances_mean[i]:.3f}&amp;quot;
f&amp;quot; +/- {result.importances_std[i]:.3f}&amp;quot;)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>/Users/annebraae/opt/anaconda3/lib/python3.8/site-packages/joblib/externals/loky/process_executor.py:688: UserWarning: A worker stopped while some jobs were given to the executor. This can be caused by a too short worker timeout or by a memory leak.
warnings.warn(
ppt 0.014 +/- 0.001
wind_speed0.011 +/- 0.001
hour_20 0.008 +/- 0.000
hour_18 0.006 +/- 0.000
hour_19 0.006 +/- 0.001
wind_dir0.005 +/- 0.001
temp_ave0.005 +/- 0.001
hour_21 0.004 +/- 0.000
hour_17 0.004 +/- 0.000
visib 0.003 +/- 0.000
hour_6 0.003 +/- 0.000
temp_departure0.003 +/- 0.001
carrier_name_United Air Lines Inc.0.002 +/- 0.000
weekday_Saturday0.002 +/- 0.001
hour_8 0.002 +/- 0.000
hour_7 0.002 +/- 0.000
carrier_name_JetBlue Airways0.002 +/- 0.000
hour_9 0.002 +/- 0.000
month_flag_Jun0.001 +/- 0.000
hour_12 0.001 +/- 0.000
weekday_Friday0.001 +/- 0.000
hour_10 0.001 +/- 0.000
manufacturer_BOEING0.001 +/- 0.001
month_flag_May0.001 +/- 0.000
hour_11 0.001 +/- 0.000
hour_15 0.001 +/- 0.000
weekday_Wednesday0.001 +/- 0.000
snow_depth0.001 +/- 0.000
hour_16 0.001 +/- 0.000
carrier_name_Southwest Airlines Co.0.001 +/- 0.000
month_flag_Feb0.001 +/- 0.000
month_flag_Jul0.001 +/- 0.000
carrier_name_ExpressJet Airlines Inc.0.001 +/- 0.000
month_flag_Sep0.001 +/- 0.000
weekday_Thursday0.001 +/- 0.000
hour_13 0.001 +/- 0.000
weekday_Tuesday0.000 +/- 0.000
weekday_Monday0.000 +/- 0.000
hour_22 0.000 +/- 0.000
month_flag_Apr0.000 +/- 0.000
month_flag_Dec0.000 +/- 0.000
dest_airport_Ronald Reagan Washington National Airport0.000 +/- 0.000
dest_airport_South Bend Regional Airport0.000 +/- 0.000
dest_airport_Salt Lake City International Airport0.000 +/- 0.000
dest_airport_Nashville International Airport0.000 +/- 0.000
dest_airport_Buffalo Niagara International Airport0.000 +/- 0.000
dest_airport_McGhee Tyson Airport0.000 +/- 0.000
dest_airport_Lovell Field0.000 +/- 0.000
dest_airport_Jacksonville International Airport0.000 +/- 0.000
dest_airport_Baltimore/Washington International Thurgood Marshall Airport0.000 +/- 0.000
manufacturer_Other0.000 +/- 0.000
dest_airport_Des Moines International Airport0.000 +/- 0.000
dest_airport_Blue Grass Airport0.000 +/- 0.000
dest_airport_Gerald R. Ford International Airport0.000 +/- 0.000
dest_airport_Fort Wayne International Airport0.000 +/- 0.000
dest_airport_Greenville Spartanburg International Airport0.000 +/- 0.000
dest_airport_Bishop International Airport0.000 +/- 0.000
&lt;/code>&lt;/pre>
&lt;p>From the results of the permutation importance, I can remove &lt;code>air_time&lt;/code>, &lt;code>wind_scale&lt;/code>, &lt;code>dest_airport&lt;/code>, &lt;code>dest_alt&lt;/code>, &lt;code>distance&lt;/code>, &lt;code>engine&lt;/code>, &lt;code>manufacturer&lt;/code>, &lt;code>snow_depth&lt;/code>, &lt;code>new_snow&lt;/code>.&lt;/p>
&lt;h2 id="2-model-with-unimportant-features-removed">2. Model with unimportant features removed&lt;/h2>
&lt;pre>&lt;code class="language-python">ewr_model_data.shape
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>(112447, 21)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">ewr_model_trim = ewr_model_data.drop(
columns=['air_time', 'wind_scale', 'dest_airport', 'dest_alt',
'distance', 'engine', 'manufacturer', 'snow_depth', 'new_snow']).copy()
ewr_model_trim.dropna(inplace=True)
ewr_model_trim.shape
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>(112447, 12)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># one hot encoding
ewr_model_trim = pd.get_dummies(ewr_model_trim)
# split into predictors and response
ewr_predictors = ewr_model_trim.drop(columns = 'dep_delay_true')
ewr_response = ewr_model_trim['dep_delay_true']
# list of predictor names for later labelling
ewr_X_names = list(ewr_predictors)
# convert to numpy arrays for modelling
ewr_predictors = np.nan_to_num(ewr_predictors.astype(np.float32))
ewr_response = np.array(ewr_response)
# split data into test and train
# stratify on response as it is skewed 24% to 76%
ewr_X_train, ewr_X_test, ewr_y_train, ewr_y_test = \
train_test_split(ewr_predictors, ewr_response, test_size = 0.2,
random_state = 42,
stratify = ewr_response)
&lt;/code>&lt;/pre>
&lt;p>Again, establish a baseline for the model using a dummy classifier.&lt;/p>
&lt;pre>&lt;code class="language-python">clf_dummy = DummyClassifier(random_state=42)
clf_dummy.fit(ewr_X_train, ewr_y_train)
# model metrics for baseline model
print(&amp;quot;Accuracy&amp;quot;, (clf_dummy.score(ewr_X_test, ewr_y_test)) * 100)
ewr_y_pred_test = clf_dummy.predict(ewr_X_test)
ewr_y_pred_train = clf_dummy.predict(ewr_X_train)
print(&amp;quot;MAE train&amp;quot;, mean_absolute_error(ewr_y_train.astype('int'),
ewr_y_pred_train.astype('int')))
print(&amp;quot;MAE test&amp;quot;, mean_absolute_error(ewr_y_test.astype('int'),
ewr_y_pred_test.astype('int')))
print(&amp;quot;AUC train&amp;quot;, roc_auc_score(ewr_y_train, ewr_y_pred_train))
print(&amp;quot;AUC test&amp;quot;, roc_auc_score(ewr_y_test, ewr_y_pred_test))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Accuracy 75.97598932859049
MAE train 0.240225885700946
MAE test 0.24024010671409515
AUC train 0.5
AUC test 0.5
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">ewr_model_final = RandomForestClassifier(n_estimators = 1000,
min_samples_leaf=3,
random_state = 42)
ewr_model_final.fit(ewr_X_train, ewr_y_train)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>RandomForestClassifier(min_samples_leaf=3, n_estimators=1000, random_state=42)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># model metrics for final model
print(&amp;quot;Training Accuracy&amp;quot;, (ewr_model_final.score(ewr_X_train, ewr_y_train)) * 100)
print(&amp;quot;Test Accuracy&amp;quot;, (ewr_model_final.score(ewr_X_test, ewr_y_test)) * 100)
ewr_y_pred_test = ewr_model_final.predict(ewr_X_test)
ewr_y_pred_train = ewr_model_final.predict(ewr_X_train)
print(&amp;quot;MAE train&amp;quot;, mean_absolute_error(ewr_y_train.astype('int'),
ewr_y_pred_train.astype('int')))
print(&amp;quot;MAE test&amp;quot;, mean_absolute_error(ewr_y_test.astype('int'),
ewr_y_pred_test.astype('int')))
print(&amp;quot;AUC train&amp;quot;, roc_auc_score(ewr_y_train, ewr_y_pred_train))
print(&amp;quot;AUC test&amp;quot;, roc_auc_score(ewr_y_test, ewr_y_pred_test))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Training Accuracy 84.1524283824494
Test Accuracy 80.23566029346377
MAE train 0.15847571617550607
MAE test 0.19764339706536238
AUC train 0.7196908452983956
AUC test 0.6629441953662123
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># generate confusion matrix
mat = confusion_matrix(ewr_y_test, ewr_y_pred_test)
sns.heatmap(mat.T, square = True, annot = True, fmt = 'd', cbar = False)
plt.xlabel('true label')
plt.ylabel('predicted label');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_97_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python"># get numerical feature importances
importances = list(ewr_model_final.feature_importances_)
# list of tuples with variable and importance
feature_importances = [(feature, round(importance, 2)) for feature,
importance in zip(ewr_X_names, importances)]
# sort the feature importances by most important first
feature_importances = sorted(feature_importances, key = lambda x: x[1], reverse = True)
# print out the feature and importances
[print('Variable: {:20} Importance: {}'.format(*pair)) for pair in feature_importances];
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Variable: wind_speed Importance: 0.1
Variable: temp_ave Importance: 0.09
Variable: wind_dir Importance: 0.08
Variable: temp_departure Importance: 0.08
Variable: ppt Importance: 0.07
Variable: visib Importance: 0.03
Variable: hour_6 Importance: 0.03
Variable: hour_17 Importance: 0.03
Variable: hour_19 Importance: 0.03
Variable: hour_20 Importance: 0.03
Variable: carrier_name_United Air Lines Inc. Importance: 0.03
Variable: hour_7 Importance: 0.02
Variable: hour_18 Importance: 0.02
Variable: hour_21 Importance: 0.02
Variable: carrier_name_ExpressJet Airlines Inc. Importance: 0.02
Variable: carrier_name_JetBlue Airways Importance: 0.02
Variable: hour_8 Importance: 0.01
Variable: hour_9 Importance: 0.01
Variable: hour_10 Importance: 0.01
Variable: hour_11 Importance: 0.01
Variable: hour_12 Importance: 0.01
Variable: hour_13 Importance: 0.01
Variable: hour_14 Importance: 0.01
Variable: hour_15 Importance: 0.01
Variable: hour_16 Importance: 0.01
Variable: carrier_name_American Airlines Inc. Importance: 0.01
Variable: carrier_name_Delta Air Lines Inc. Importance: 0.01
Variable: carrier_name_Southwest Airlines Co. Importance: 0.01
Variable: month_flag_Apr Importance: 0.01
Variable: month_flag_Aug Importance: 0.01
Variable: month_flag_Dec Importance: 0.01
Variable: month_flag_Feb Importance: 0.01
Variable: month_flag_Jan Importance: 0.01
Variable: month_flag_Jul Importance: 0.01
Variable: month_flag_Jun Importance: 0.01
Variable: month_flag_Mar Importance: 0.01
Variable: month_flag_May Importance: 0.01
Variable: month_flag_Nov Importance: 0.01
Variable: month_flag_Oct Importance: 0.01
Variable: month_flag_Sep Importance: 0.01
Variable: weekday_Friday Importance: 0.01
Variable: weekday_Monday Importance: 0.01
Variable: weekday_Saturday Importance: 0.01
Variable: weekday_Sunday Importance: 0.01
Variable: weekday_Thursday Importance: 0.01
Variable: weekday_Tuesday Importance: 0.01
Variable: weekday_Wednesday Importance: 0.01
Variable: origin_EWR Importance: 0.0
Variable: hour_1 Importance: 0.0
Variable: hour_5 Importance: 0.0
Variable: hour_22 Importance: 0.0
Variable: hour_23 Importance: 0.0
Variable: carrier_name_Alaska Airlines Inc. Importance: 0.0
Variable: carrier_name_SkyWest Airlines Inc. Importance: 0.0
Variable: carrier_name_Spirit Air Lines Importance: 0.0
Variable: carrier_name_Virgin America Importance: 0.0
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># make feature importance plot
features = ewr_X_names
importances = ewr_model_final.feature_importances_
indices = np.argsort(importances)
# customized number
num_features = 15
plt.figure(figsize=(5, 4))
plt.title('Feature Importances')
# only plot the customized number of features
plt.barh(range(num_features), importances[indices[-num_features:]], color='#49006a', align='center')
plt.yticks(range(num_features), [features[i] for i in indices[-num_features:]])
plt.xlabel('Relative Importance')
plt.show()
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_99_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">result = permutation_importance(ewr_model_final, ewr_X_test, ewr_y_test, n_repeats=10,
random_state=42, n_jobs=2)
for i in result.importances_mean.argsort()[::-1]:
if result.importances_mean[i] - 2 * result.importances_std[i] &amp;gt; 0:
print(f&amp;quot;{ewr_X_names[i]:&amp;lt;8}&amp;quot;
f&amp;quot;{result.importances_mean[i]:.3f}&amp;quot;
f&amp;quot; +/- {result.importances_std[i]:.3f}&amp;quot;)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>/Users/annebraae/opt/anaconda3/lib/python3.8/site-packages/joblib/externals/loky/process_executor.py:688: UserWarning: A worker stopped while some jobs were given to the executor. This can be caused by a too short worker timeout or by a memory leak.
warnings.warn(
ppt 0.015 +/- 0.001
wind_speed0.011 +/- 0.001
hour_19 0.009 +/- 0.001
hour_20 0.008 +/- 0.001
hour_17 0.006 +/- 0.001
carrier_name_United Air Lines Inc.0.006 +/- 0.001
hour_21 0.006 +/- 0.000
hour_18 0.005 +/- 0.000
hour_6 0.004 +/- 0.000
carrier_name_JetBlue Airways0.004 +/- 0.001
weekday_Saturday0.003 +/- 0.001
temp_ave0.003 +/- 0.001
hour_8 0.003 +/- 0.001
wind_dir0.003 +/- 0.001
visib 0.003 +/- 0.000
hour_16 0.002 +/- 0.000
hour_7 0.002 +/- 0.001
hour_15 0.001 +/- 0.000
hour_22 0.001 +/- 0.000
carrier_name_Alaska Airlines Inc.0.001 +/- 0.000
carrier_name_Southwest Airlines Co.0.001 +/- 0.000
hour_10 0.001 +/- 0.000
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># make permutation importance plot
features = ewr_X_names
importances = result.importances_mean
indices = np.argsort(importances)
# customized number
num_features = 15
plt.figure(figsize=(5, 4))
plt.title('Permutation Feature Importances')
# only plot the customized number of features
plt.barh(range(num_features), importances[indices[-num_features:]], color='#49006a', align='center')
plt.yticks(range(num_features), [features[i] for i in indices[-num_features:]])
plt.xlabel('Relative Importance')
plt.show()
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_101_0.png" alt="png">&lt;/p>
&lt;h4 id="format-permutation-feature-importance-plot-for-presentation">Format permutation feature importance plot for presentation&lt;/h4>
&lt;p>As this permutation feature importance plot was from the final model, format the plot so it is presentation worthy. This plot will be presented back to the client to inform on features contributing to flight departure delays.&lt;/p>
&lt;p>Note - this is not a DRY (don&amp;rsquo;t repeat yourself) way of changing the names in this list, but it was the fastest way I could think of at the time.&lt;/p>
&lt;pre>&lt;code class="language-python"># change axis labels
df = pd.DataFrame(ewr_X_names)
df.replace('wind_speed', 'Wind Speed', inplace=True)
df.replace('ppt', 'Precip', inplace=True)
df.replace('hour_19', '7pm', inplace=True)
df.replace('hour_20', '8pm', inplace=True)
df.replace('hour_17', '5pm', inplace=True)
df.replace('hour_17', '5pm', inplace=True)
df.replace('hour_21', '9pm', inplace=True)
df.replace('hour_18', '6pm', inplace=True)
df.replace('hour_6', '6am', inplace=True)
df.replace('carrier_name_United Air Lines Inc.', 'United Air Lines Inc.', inplace=True)
df.replace('carrier_name_JetBlue Airways', 'JetBlue Airways', inplace=True)
ewr_X_names = list(df[0])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># make permutation importance plot
features = ewr_X_names
importances = result.importances_mean
indices = np.argsort(importances)
# customized number
num_features = 10
plt.figure(figsize=(8, 5))
plt.title('Top 10 Features')
# only plot the customized number of features
plt.barh(range(num_features), importances[indices[-num_features:]],
color='#49006a', align='center')
plt.yticks(range(num_features), [features[i] for i in indices[-num_features:]])
plt.xlabel('Relative Importance')
plt.tight_layout()
plt.subplots_adjust(bottom=0.15)
plt.savefig('./figures/model_importance_plot.png', dpi = 250, pad_inches=0.85);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_104_0.png" alt="png">&lt;/p>
&lt;ul>
&lt;li>bias in the response variable of departure delays (76% to 24% delayed) is proving difficult to model&lt;/li>
&lt;li>if want to improve the model can try synthetically inflating the delayed numbers to get the ratio closer to 50%&lt;/li>
&lt;li>consider this if run this model again&lt;/li>
&lt;/ul>
&lt;p>Other thoughts for future modeling runs:&lt;/p>
&lt;ul>
&lt;li>Use a pipeline for dummy encoding and model fitting&lt;/li>
&lt;li>plot ROC for all different models on same axis for visual comparison&lt;/li>
&lt;/ul>
&lt;h1 id="summary-and-conclusions">Summary and conclusions&lt;/h1>
&lt;ul>
&lt;li>High precipitation and wind speed cause delays&lt;/li>
&lt;li>Flights departing after 5pm have larger delays&lt;/li>
&lt;li>Don&amp;rsquo;t fly United Air Lines Inc. or Jet Blue Airways&lt;/li>
&lt;/ul></description></item><item><title>Analysis of flight delays for Newark Airport</title><link>https://abraae.netlify.app/project/flight-delays/</link><pubDate>Thu, 30 Sep 2021 00:00:00 +0000</pubDate><guid>https://abraae.netlify.app/project/flight-delays/</guid><description>&lt;p>This is my final end to end data project for CodeClan. Written in Python in Jupyter Notebooks. The aim was to provide data-driven exploratory analysis to provide insight on the impact of weather on flight delays. To achieve this I did an exploratory data analysis and modelling. This entry contains the exploratory data analysis. &lt;br />&lt;/p>
&lt;p>Newark airport has requested an investigation into flight departure delays.&lt;br />
Flight delays are a key performance indicator of airport operations. &lt;br />
The following three business questions are explored:&lt;br />&lt;/p>
&lt;ul>
&lt;li>How does Newark compare to other NY airports&lt;/li>
&lt;li>What is the impact of weather on flight departure delays&lt;/li>
&lt;li>What other reasons impact flight departure delays&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-python"># import libraries
import pandas as pd
import numpy as np
import pandas_profiling as pp
import datetime as dt
import seaborn as sns
from matplotlib import pyplot as plt
import folium
import branca
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># read in data
ewr_flights = pd.read_csv('data/clean_data/ewr_flights.csv')
# create combined flights_all data
flight_files = ['data/clean_data/ewr_flights.csv',
'data/clean_data/jfk_flights.csv',
'data/clean_data/lga_flights.csv']
flights_all = pd.concat(map(pd.read_csv, flight_files))
&lt;/code>&lt;/pre>
&lt;h1 id="preliminary-analysis">Preliminary analysis&lt;/h1>
&lt;h2 id="investigating-weather-data">Investigating weather data&lt;/h2>
&lt;pre>&lt;code class="language-python"># profile report for weather variables
pp.ProfileReport(ewr_flights.loc[:, ['time_hour', 'dep_delay_true', 'wind_dir',
'wind_speed', 'wind_gust', 'visib', 'temp_max', 'temp_min',
'temp_ave', 'temp_departure', 'ppt', 'new_snow', 'snow_depth']])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>Summarize dataset: 100%|██████████| 27/27 [00:14&amp;lt;00:00, 1.88it/s, Completed]
Generate report structure: 100%|██████████| 1/1 [00:02&amp;lt;00:00, 2.18s/it]
Render HTML: 100%|██████████| 1/1 [00:02&amp;lt;00:00, 2.27s/it]
&lt;/code>&lt;/pre>
&lt;iframe width="100%" height="800px" srcdoc="&amp;lt;!doctype html&amp;gt;&amp;lt;html lang=en&amp;gt;&amp;lt;head&amp;gt;&amp;lt;meta charset=utf-8&amp;gt;&amp;lt;meta name=viewport content=&amp;quot;width=device-width, initial-scale=1, shrink-to-fit=no&amp;quot;&amp;gt;&amp;lt;meta name=description content=&amp;quot;Profile report generated with the `pandas-profiling` Python package&amp;quot;&amp;gt;&amp;lt;meta name=author content=&amp;quot;Simon Brugman and the open source community.&amp;quot;&amp;gt;&amp;lt;meta name=generator content=&amp;quot;Pandas Profiling v2.9.0&amp;quot;&amp;gt;&amp;lt;meta name=url content=https://github.com/pandas-profiling/pandas-profiling&amp;gt;&amp;lt;meta name=date content=&amp;quot;2021-09-30 16:07:17.967040&amp;quot;&amp;gt;&amp;lt;title&amp;gt;Pandas Profiling Report&amp;lt;/title&amp;gt;&amp;lt;style&amp;gt;
/*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:&amp;quot; (&amp;quot; attr(href) &amp;quot;)&amp;quot;}abbr[title]:after{content:&amp;quot; (&amp;quot; attr(title) &amp;quot;)&amp;quot;}a[href^=&amp;quot;javascript:&amp;quot;]:after,a[href^=&amp;quot;#&amp;quot;]:after{content:&amp;quot;&amp;quot;}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn&amp;gt;.caret,.dropup&amp;gt;.btn&amp;gt;.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered td,.table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:&amp;#x27;Glyphicons Halflings&amp;#x27;;src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format(&amp;#x27;embedded-opentype&amp;#x27;),url(../fonts/glyphicons-halflings-regular.woff2) format(&amp;#x27;woff2&amp;#x27;),url(../fonts/glyphicons-halflings-regular.woff) format(&amp;#x27;woff&amp;#x27;),url(../fonts/glyphicons-halflings-regular.ttf) format(&amp;#x27;truetype&amp;#x27;),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format(&amp;#x27;svg&amp;#x27;)}.glyphicon{position:relative;top:1px;display:inline-block;font-family:&amp;#x27;Glyphicons Halflings&amp;#x27;;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:&amp;quot;\002a&amp;quot;}.glyphicon-plus:before{content:&amp;quot;\002b&amp;quot;}.glyphicon-eur:before,.glyphicon-euro:before{content:&amp;quot;\20ac&amp;quot;}.glyphicon-minus:before{content:&amp;quot;\2212&amp;quot;}.glyphicon-cloud:before{content:&amp;quot;\2601&amp;quot;}.glyphicon-envelope:before{content:&amp;quot;\2709&amp;quot;}.glyphicon-pencil:before{content:&amp;quot;\270f&amp;quot;}.glyphicon-glass:before{content:&amp;quot;\e001&amp;quot;}.glyphicon-music:before{content:&amp;quot;\e002&amp;quot;}.glyphicon-search:before{content:&amp;quot;\e003&amp;quot;}.glyphicon-heart:before{content:&amp;quot;\e005&amp;quot;}.glyphicon-star:before{content:&amp;quot;\e006&amp;quot;}.glyphicon-star-empty:before{content:&amp;quot;\e007&amp;quot;}.glyphicon-user:before{content:&amp;quot;\e008&amp;quot;}.glyphicon-film:before{content:&amp;quot;\e009&amp;quot;}.glyphicon-th-large:before{content:&amp;quot;\e010&amp;quot;}.glyphicon-th:before{content:&amp;quot;\e011&amp;quot;}.glyphicon-th-list:before{content:&amp;quot;\e012&amp;quot;}.glyphicon-ok:before{content:&amp;quot;\e013&amp;quot;}.glyphicon-remove:before{content:&amp;quot;\e014&amp;quot;}.glyphicon-zoom-in:before{content:&amp;quot;\e015&amp;quot;}.glyphicon-zoom-out:before{content:&amp;quot;\e016&amp;quot;}.glyphicon-off:before{content:&amp;quot;\e017&amp;quot;}.glyphicon-signal:before{content:&amp;quot;\e018&amp;quot;}.glyphicon-cog:before{content:&amp;quot;\e019&amp;quot;}.glyphicon-trash:before{content:&amp;quot;\e020&amp;quot;}.glyphicon-home:before{content:&amp;quot;\e021&amp;quot;}.glyphicon-file:before{content:&amp;quot;\e022&amp;quot;}.glyphicon-time:before{content:&amp;quot;\e023&amp;quot;}.glyphicon-road:before{content:&amp;quot;\e024&amp;quot;}.glyphicon-download-alt:before{content:&amp;quot;\e025&amp;quot;}.glyphicon-download:before{content:&amp;quot;\e026&amp;quot;}.glyphicon-upload:before{content:&amp;quot;\e027&amp;quot;}.glyphicon-inbox:before{content:&amp;quot;\e028&amp;quot;}.glyphicon-play-circle:before{content:&amp;quot;\e029&amp;quot;}.glyphicon-repeat:before{content:&amp;quot;\e030&amp;quot;}.glyphicon-refresh:before{content:&amp;quot;\e031&amp;quot;}.glyphicon-list-alt:before{content:&amp;quot;\e032&amp;quot;}.glyphicon-lock:before{content:&amp;quot;\e033&amp;quot;}.glyphicon-flag:before{content:&amp;quot;\e034&amp;quot;}.glyphicon-headphones:before{content:&amp;quot;\e035&amp;quot;}.glyphicon-volume-off:before{content:&amp;quot;\e036&amp;quot;}.glyphicon-volume-down:before{content:&amp;quot;\e037&amp;quot;}.glyphicon-volume-up:before{content:&amp;quot;\e038&amp;quot;}.glyphicon-qrcode:before{content:&amp;quot;\e039&amp;quot;}.glyphicon-barcode:before{content:&amp;quot;\e040&amp;quot;}.glyphicon-tag:before{content:&amp;quot;\e041&amp;quot;}.glyphicon-tags:before{content:&amp;quot;\e042&amp;quot;}.glyphicon-book:before{content:&amp;quot;\e043&amp;quot;}.glyphicon-bookmark:before{content:&amp;quot;\e044&amp;quot;}.glyphicon-print:before{content:&amp;quot;\e045&amp;quot;}.glyphicon-camera:before{content:&amp;quot;\e046&amp;quot;}.glyphicon-font:before{content:&amp;quot;\e047&amp;quot;}.glyphicon-bold:before{content:&amp;quot;\e048&amp;quot;}.glyphicon-italic:before{content:&amp;quot;\e049&amp;quot;}.glyphicon-text-height:before{content:&amp;quot;\e050&amp;quot;}.glyphicon-text-width:before{content:&amp;quot;\e051&amp;quot;}.glyphicon-align-left:before{content:&amp;quot;\e052&amp;quot;}.glyphicon-align-center:before{content:&amp;quot;\e053&amp;quot;}.glyphicon-align-right:before{content:&amp;quot;\e054&amp;quot;}.glyphicon-align-justify:before{content:&amp;quot;\e055&amp;quot;}.glyphicon-list:before{content:&amp;quot;\e056&amp;quot;}.glyphicon-indent-left:before{content:&amp;quot;\e057&amp;quot;}.glyphicon-indent-right:before{content:&amp;quot;\e058&amp;quot;}.glyphicon-facetime-video:before{content:&amp;quot;\e059&amp;quot;}.glyphicon-picture:before{content:&amp;quot;\e060&amp;quot;}.glyphicon-map-marker:before{content:&amp;quot;\e062&amp;quot;}.glyphicon-adjust:before{content:&amp;quot;\e063&amp;quot;}.glyphicon-tint:before{content:&amp;quot;\e064&amp;quot;}.glyphicon-edit:before{content:&amp;quot;\e065&amp;quot;}.glyphicon-share:before{content:&amp;quot;\e066&amp;quot;}.glyphicon-check:before{content:&amp;quot;\e067&amp;quot;}.glyphicon-move:before{content:&amp;quot;\e068&amp;quot;}.glyphicon-step-backward:before{content:&amp;quot;\e069&amp;quot;}.glyphicon-fast-backward:before{content:&amp;quot;\e070&amp;quot;}.glyphicon-backward:before{content:&amp;quot;\e071&amp;quot;}.glyphicon-play:before{content:&amp;quot;\e072&amp;quot;}.glyphicon-pause:before{content:&amp;quot;\e073&amp;quot;}.glyphicon-stop:before{content:&amp;quot;\e074&amp;quot;}.glyphicon-forward:before{content:&amp;quot;\e075&amp;quot;}.glyphicon-fast-forward:before{content:&amp;quot;\e076&amp;quot;}.glyphicon-step-forward:before{content:&amp;quot;\e077&amp;quot;}.glyphicon-eject:before{content:&amp;quot;\e078&amp;quot;}.glyphicon-chevron-left:before{content:&amp;quot;\e079&amp;quot;}.glyphicon-chevron-right:before{content:&amp;quot;\e080&amp;quot;}.glyphicon-plus-sign:before{content:&amp;quot;\e081&amp;quot;}.glyphicon-minus-sign:before{content:&amp;quot;\e082&amp;quot;}.glyphicon-remove-sign:before{content:&amp;quot;\e083&amp;quot;}.glyphicon-ok-sign:before{content:&amp;quot;\e084&amp;quot;}.glyphicon-question-sign:before{content:&amp;quot;\e085&amp;quot;}.glyphicon-info-sign:before{content:&amp;quot;\e086&amp;quot;}.glyphicon-screenshot:before{content:&amp;quot;\e087&amp;quot;}.glyphicon-remove-circle:before{content:&amp;quot;\e088&amp;quot;}.glyphicon-ok-circle:before{content:&amp;quot;\e089&amp;quot;}.glyphicon-ban-circle:before{content:&amp;quot;\e090&amp;quot;}.glyphicon-arrow-left:before{content:&amp;quot;\e091&amp;quot;}.glyphicon-arrow-right:before{content:&amp;quot;\e092&amp;quot;}.glyphicon-arrow-up:before{content:&amp;quot;\e093&amp;quot;}.glyphicon-arrow-down:before{content:&amp;quot;\e094&amp;quot;}.glyphicon-share-alt:before{content:&amp;quot;\e095&amp;quot;}.glyphicon-resize-full:before{content:&amp;quot;\e096&amp;quot;}.glyphicon-resize-small:before{content:&amp;quot;\e097&amp;quot;}.glyphicon-exclamation-sign:before{content:&amp;quot;\e101&amp;quot;}.glyphicon-gift:before{content:&amp;quot;\e102&amp;quot;}.glyphicon-leaf:before{content:&amp;quot;\e103&amp;quot;}.glyphicon-fire:before{content:&amp;quot;\e104&amp;quot;}.glyphicon-eye-open:before{content:&amp;quot;\e105&amp;quot;}.glyphicon-eye-close:before{content:&amp;quot;\e106&amp;quot;}.glyphicon-warning-sign:before{content:&amp;quot;\e107&amp;quot;}.glyphicon-plane:before{content:&amp;quot;\e108&amp;quot;}.glyphicon-calendar:before{content:&amp;quot;\e109&amp;quot;}.glyphicon-random:before{content:&amp;quot;\e110&amp;quot;}.glyphicon-comment:before{content:&amp;quot;\e111&amp;quot;}.glyphicon-magnet:before{content:&amp;quot;\e112&amp;quot;}.glyphicon-chevron-up:before{content:&amp;quot;\e113&amp;quot;}.glyphicon-chevron-down:before{content:&amp;quot;\e114&amp;quot;}.glyphicon-retweet:before{content:&amp;quot;\e115&amp;quot;}.glyphicon-shopping-cart:before{content:&amp;quot;\e116&amp;quot;}.glyphicon-folder-close:before{content:&amp;quot;\e117&amp;quot;}.glyphicon-folder-open:before{content:&amp;quot;\e118&amp;quot;}.glyphicon-resize-vertical:before{content:&amp;quot;\e119&amp;quot;}.glyphicon-resize-horizontal:before{content:&amp;quot;\e120&amp;quot;}.glyphicon-hdd:before{content:&amp;quot;\e121&amp;quot;}.glyphicon-bullhorn:before{content:&amp;quot;\e122&amp;quot;}.glyphicon-bell:before{content:&amp;quot;\e123&amp;quot;}.glyphicon-certificate:before{content:&amp;quot;\e124&amp;quot;}.glyphicon-thumbs-up:before{content:&amp;quot;\e125&amp;quot;}.glyphicon-thumbs-down:before{content:&amp;quot;\e126&amp;quot;}.glyphicon-hand-right:before{content:&amp;quot;\e127&amp;quot;}.glyphicon-hand-left:before{content:&amp;quot;\e128&amp;quot;}.glyphicon-hand-up:before{content:&amp;quot;\e129&amp;quot;}.glyphicon-hand-down:before{content:&amp;quot;\e130&amp;quot;}.glyphicon-circle-arrow-right:before{content:&amp;quot;\e131&amp;quot;}.glyphicon-circle-arrow-left:before{content:&amp;quot;\e132&amp;quot;}.glyphicon-circle-arrow-up:before{content:&amp;quot;\e133&amp;quot;}.glyphicon-circle-arrow-down:before{content:&amp;quot;\e134&amp;quot;}.glyphicon-globe:before{content:&amp;quot;\e135&amp;quot;}.glyphicon-wrench:before{content:&amp;quot;\e136&amp;quot;}.glyphicon-tasks:before{content:&amp;quot;\e137&amp;quot;}.glyphicon-filter:before{content:&amp;quot;\e138&amp;quot;}.glyphicon-briefcase:before{content:&amp;quot;\e139&amp;quot;}.glyphicon-fullscreen:before{content:&amp;quot;\e140&amp;quot;}.glyphicon-dashboard:before{content:&amp;quot;\e141&amp;quot;}.glyphicon-paperclip:before{content:&amp;quot;\e142&amp;quot;}.glyphicon-heart-empty:before{content:&amp;quot;\e143&amp;quot;}.glyphicon-link:before{content:&amp;quot;\e144&amp;quot;}.glyphicon-phone:before{content:&amp;quot;\e145&amp;quot;}.glyphicon-pushpin:before{content:&amp;quot;\e146&amp;quot;}.glyphicon-usd:before{content:&amp;quot;\e148&amp;quot;}.glyphicon-gbp:before{content:&amp;quot;\e149&amp;quot;}.glyphicon-sort:before{content:&amp;quot;\e150&amp;quot;}.glyphicon-sort-by-alphabet:before{content:&amp;quot;\e151&amp;quot;}.glyphicon-sort-by-alphabet-alt:before{content:&amp;quot;\e152&amp;quot;}.glyphicon-sort-by-order:before{content:&amp;quot;\e153&amp;quot;}.glyphicon-sort-by-order-alt:before{content:&amp;quot;\e154&amp;quot;}.glyphicon-sort-by-attributes:before{content:&amp;quot;\e155&amp;quot;}.glyphicon-sort-by-attributes-alt:before{content:&amp;quot;\e156&amp;quot;}.glyphicon-unchecked:before{content:&amp;quot;\e157&amp;quot;}.glyphicon-expand:before{content:&amp;quot;\e158&amp;quot;}.glyphicon-collapse-down:before{content:&amp;quot;\e159&amp;quot;}.glyphicon-collapse-up:before{content:&amp;quot;\e160&amp;quot;}.glyphicon-log-in:before{content:&amp;quot;\e161&amp;quot;}.glyphicon-flash:before{content:&amp;quot;\e162&amp;quot;}.glyphicon-log-out:before{content:&amp;quot;\e163&amp;quot;}.glyphicon-new-window:before{content:&amp;quot;\e164&amp;quot;}.glyphicon-record:before{content:&amp;quot;\e165&amp;quot;}.glyphicon-save:before{content:&amp;quot;\e166&amp;quot;}.glyphicon-open:before{content:&amp;quot;\e167&amp;quot;}.glyphicon-saved:before{content:&amp;quot;\e168&amp;quot;}.glyphicon-import:before{content:&amp;quot;\e169&amp;quot;}.glyphicon-export:before{content:&amp;quot;\e170&amp;quot;}.glyphicon-send:before{content:&amp;quot;\e171&amp;quot;}.glyphicon-floppy-disk:before{content:&amp;quot;\e172&amp;quot;}.glyphicon-floppy-saved:before{content:&amp;quot;\e173&amp;quot;}.glyphicon-floppy-remove:before{content:&amp;quot;\e174&amp;quot;}.glyphicon-floppy-save:before{content:&amp;quot;\e175&amp;quot;}.glyphicon-floppy-open:before{content:&amp;quot;\e176&amp;quot;}.glyphicon-credit-card:before{content:&amp;quot;\e177&amp;quot;}.glyphicon-transfer:before{content:&amp;quot;\e178&amp;quot;}.glyphicon-cutlery:before{content:&amp;quot;\e179&amp;quot;}.glyphicon-header:before{content:&amp;quot;\e180&amp;quot;}.glyphicon-compressed:before{content:&amp;quot;\e181&amp;quot;}.glyphicon-earphone:before{content:&amp;quot;\e182&amp;quot;}.glyphicon-phone-alt:before{content:&amp;quot;\e183&amp;quot;}.glyphicon-tower:before{content:&amp;quot;\e184&amp;quot;}.glyphicon-stats:before{content:&amp;quot;\e185&amp;quot;}.glyphicon-sd-video:before{content:&amp;quot;\e186&amp;quot;}.glyphicon-hd-video:before{content:&amp;quot;\e187&amp;quot;}.glyphicon-subtitles:before{content:&amp;quot;\e188&amp;quot;}.glyphicon-sound-stereo:before{content:&amp;quot;\e189&amp;quot;}.glyphicon-sound-dolby:before{content:&amp;quot;\e190&amp;quot;}.glyphicon-sound-5-1:before{content:&amp;quot;\e191&amp;quot;}.glyphicon-sound-6-1:before{content:&amp;quot;\e192&amp;quot;}.glyphicon-sound-7-1:before{content:&amp;quot;\e193&amp;quot;}.glyphicon-copyright-mark:before{content:&amp;quot;\e194&amp;quot;}.glyphicon-registration-mark:before{content:&amp;quot;\e195&amp;quot;}.glyphicon-cloud-download:before{content:&amp;quot;\e197&amp;quot;}.glyphicon-cloud-upload:before{content:&amp;quot;\e198&amp;quot;}.glyphicon-tree-conifer:before{content:&amp;quot;\e199&amp;quot;}.glyphicon-tree-deciduous:before{content:&amp;quot;\e200&amp;quot;}.glyphicon-cd:before{content:&amp;quot;\e201&amp;quot;}.glyphicon-save-file:before{content:&amp;quot;\e202&amp;quot;}.glyphicon-open-file:before{content:&amp;quot;\e203&amp;quot;}.glyphicon-level-up:before{content:&amp;quot;\e204&amp;quot;}.glyphicon-copy:before{content:&amp;quot;\e205&amp;quot;}.glyphicon-paste:before{content:&amp;quot;\e206&amp;quot;}.glyphicon-alert:before{content:&amp;quot;\e209&amp;quot;}.glyphicon-equalizer:before{content:&amp;quot;\e210&amp;quot;}.glyphicon-king:before{content:&amp;quot;\e211&amp;quot;}.glyphicon-queen:before{content:&amp;quot;\e212&amp;quot;}.glyphicon-pawn:before{content:&amp;quot;\e213&amp;quot;}.glyphicon-bishop:before{content:&amp;quot;\e214&amp;quot;}.glyphicon-knight:before{content:&amp;quot;\e215&amp;quot;}.glyphicon-baby-formula:before{content:&amp;quot;\e216&amp;quot;}.glyphicon-tent:before{content:&amp;quot;\26fa&amp;quot;}.glyphicon-blackboard:before{content:&amp;quot;\e218&amp;quot;}.glyphicon-bed:before{content:&amp;quot;\e219&amp;quot;}.glyphicon-apple:before{content:&amp;quot;\f8ff&amp;quot;}.glyphicon-erase:before{content:&amp;quot;\e221&amp;quot;}.glyphicon-hourglass:before{content:&amp;quot;\231b&amp;quot;}.glyphicon-lamp:before{content:&amp;quot;\e223&amp;quot;}.glyphicon-duplicate:before{content:&amp;quot;\e224&amp;quot;}.glyphicon-piggy-bank:before{content:&amp;quot;\e225&amp;quot;}.glyphicon-scissors:before{content:&amp;quot;\e226&amp;quot;}.glyphicon-bitcoin:before{content:&amp;quot;\e227&amp;quot;}.glyphicon-btc:before{content:&amp;quot;\e227&amp;quot;}.glyphicon-xbt:before{content:&amp;quot;\e227&amp;quot;}.glyphicon-yen:before{content:&amp;quot;\00a5&amp;quot;}.glyphicon-jpy:before{content:&amp;quot;\00a5&amp;quot;}.glyphicon-ruble:before{content:&amp;quot;\20bd&amp;quot;}.glyphicon-rub:before{content:&amp;quot;\20bd&amp;quot;}.glyphicon-scale:before{content:&amp;quot;\e230&amp;quot;}.glyphicon-ice-lolly:before{content:&amp;quot;\e231&amp;quot;}.glyphicon-ice-lolly-tasted:before{content:&amp;quot;\e232&amp;quot;}.glyphicon-education:before{content:&amp;quot;\e233&amp;quot;}.glyphicon-option-horizontal:before{content:&amp;quot;\e234&amp;quot;}.glyphicon-option-vertical:before{content:&amp;quot;\e235&amp;quot;}.glyphicon-menu-hamburger:before{content:&amp;quot;\e236&amp;quot;}.glyphicon-modal-window:before{content:&amp;quot;\e237&amp;quot;}.glyphicon-oil:before{content:&amp;quot;\e238&amp;quot;}.glyphicon-grain:before{content:&amp;quot;\e239&amp;quot;}.glyphicon-sunglasses:before{content:&amp;quot;\e240&amp;quot;}.glyphicon-text-size:before{content:&amp;quot;\e241&amp;quot;}.glyphicon-text-color:before{content:&amp;quot;\e242&amp;quot;}.glyphicon-text-background:before{content:&amp;quot;\e243&amp;quot;}.glyphicon-object-align-top:before{content:&amp;quot;\e244&amp;quot;}.glyphicon-object-align-bottom:before{content:&amp;quot;\e245&amp;quot;}.glyphicon-object-align-horizontal:before{content:&amp;quot;\e246&amp;quot;}.glyphicon-object-align-left:before{content:&amp;quot;\e247&amp;quot;}.glyphicon-object-align-vertical:before{content:&amp;quot;\e248&amp;quot;}.glyphicon-object-align-right:before{content:&amp;quot;\e249&amp;quot;}.glyphicon-triangle-right:before{content:&amp;quot;\e250&amp;quot;}.glyphicon-triangle-left:before{content:&amp;quot;\e251&amp;quot;}.glyphicon-triangle-bottom:before{content:&amp;quot;\e252&amp;quot;}.glyphicon-triangle-top:before{content:&amp;quot;\e253&amp;quot;}.glyphicon-console:before{content:&amp;quot;\e254&amp;quot;}.glyphicon-superscript:before{content:&amp;quot;\e255&amp;quot;}.glyphicon-subscript:before{content:&amp;quot;\e256&amp;quot;}.glyphicon-menu-left:before{content:&amp;quot;\e257&amp;quot;}.glyphicon-menu-right:before{content:&amp;quot;\e258&amp;quot;}.glyphicon-menu-down:before{content:&amp;quot;\e259&amp;quot;}.glyphicon-menu-up:before{content:&amp;quot;\e260&amp;quot;}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:&amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{color:#23527c;text-decoration:underline}a:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.carousel-inner&amp;gt;.item&amp;gt;a&amp;gt;img,.carousel-inner&amp;gt;.item&amp;gt;img,.img-responsive,.thumbnail a&amp;gt;img,.thumbnail&amp;gt;img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role=button]{cursor:pointer}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,h3{margin-top:20px;margin-bottom:10px}.h1 .small,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small{font-size:65%}.h4,.h5,.h6,h4,h5,h6{margin-top:10px;margin-bottom:10px}.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-size:75%}.h1,h1{font-size:36px}.h2,h2{font-size:30px}.h3,h3{font-size:24px}.h4,h4{font-size:18px}.h5,h5{font-size:14px}.h6,h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.lead{font-size:21px}}.small,small{font-size:85%}.mark,mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline&amp;gt;li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dd,dt{line-height:1.42857143}dt{font-weight:700}dd{margin-left:0}@media (min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[data-original-title],abbr[title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer:before,blockquote small:before{content:&amp;#x27;\2014 \00A0&amp;#x27;}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:&amp;#x27;&amp;#x27;}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer:after,blockquote.pull-right small:after{content:&amp;#x27;\00A0 \2014&amp;#x27;}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,&amp;quot;Courier New&amp;quot;,monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.container{width:750px}}@media (min-width:992px){.container{width:970px}}@media (min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media (min-width:768px){.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media (min-width:992px){.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media (min-width:1200px){.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table&amp;gt;tbody&amp;gt;tr&amp;gt;td,.table&amp;gt;tbody&amp;gt;tr&amp;gt;th,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th,.table&amp;gt;thead&amp;gt;tr&amp;gt;td,.table&amp;gt;thead&amp;gt;tr&amp;gt;th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table&amp;gt;thead&amp;gt;tr&amp;gt;th{vertical-align:bottom;border-bottom:2px solid #ddd}.table&amp;gt;caption+thead&amp;gt;tr:first-child&amp;gt;td,.table&amp;gt;caption+thead&amp;gt;tr:first-child&amp;gt;th,.table&amp;gt;colgroup+thead&amp;gt;tr:first-child&amp;gt;td,.table&amp;gt;colgroup+thead&amp;gt;tr:first-child&amp;gt;th,.table&amp;gt;thead:first-child&amp;gt;tr:first-child&amp;gt;td,.table&amp;gt;thead:first-child&amp;gt;tr:first-child&amp;gt;th{border-top:0}.table&amp;gt;tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed&amp;gt;tbody&amp;gt;tr&amp;gt;td,.table-condensed&amp;gt;tbody&amp;gt;tr&amp;gt;th,.table-condensed&amp;gt;tfoot&amp;gt;tr&amp;gt;td,.table-condensed&amp;gt;tfoot&amp;gt;tr&amp;gt;th,.table-condensed&amp;gt;thead&amp;gt;tr&amp;gt;td,.table-condensed&amp;gt;thead&amp;gt;tr&amp;gt;th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td,.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th,.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td,.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th,.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td,.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th{border:1px solid #ddd}.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td,.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th{border-bottom-width:2px}.table-striped&amp;gt;tbody&amp;gt;tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover&amp;gt;tbody&amp;gt;tr:hover{background-color:#f5f5f5}table col[class*=col-]{position:static;display:table-column;float:none}table td[class*=col-],table th[class*=col-]{position:static;display:table-cell;float:none}.table&amp;gt;tbody&amp;gt;tr.active&amp;gt;td,.table&amp;gt;tbody&amp;gt;tr.active&amp;gt;th,.table&amp;gt;tbody&amp;gt;tr&amp;gt;td.active,.table&amp;gt;tbody&amp;gt;tr&amp;gt;th.active,.table&amp;gt;tfoot&amp;gt;tr.active&amp;gt;td,.table&amp;gt;tfoot&amp;gt;tr.active&amp;gt;th,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td.active,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th.active,.table&amp;gt;thead&amp;gt;tr.active&amp;gt;td,.table&amp;gt;thead&amp;gt;tr.active&amp;gt;th,.table&amp;gt;thead&amp;gt;tr&amp;gt;td.active,.table&amp;gt;thead&amp;gt;tr&amp;gt;th.active{background-color:#f5f5f5}.table-hover&amp;gt;tbody&amp;gt;tr.active:hover&amp;gt;td,.table-hover&amp;gt;tbody&amp;gt;tr.active:hover&amp;gt;th,.table-hover&amp;gt;tbody&amp;gt;tr:hover&amp;gt;.active,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;td.active:hover,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;th.active:hover{background-color:#e8e8e8}.table&amp;gt;tbody&amp;gt;tr.success&amp;gt;td,.table&amp;gt;tbody&amp;gt;tr.success&amp;gt;th,.table&amp;gt;tbody&amp;gt;tr&amp;gt;td.success,.table&amp;gt;tbody&amp;gt;tr&amp;gt;th.success,.table&amp;gt;tfoot&amp;gt;tr.success&amp;gt;td,.table&amp;gt;tfoot&amp;gt;tr.success&amp;gt;th,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td.success,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th.success,.table&amp;gt;thead&amp;gt;tr.success&amp;gt;td,.table&amp;gt;thead&amp;gt;tr.success&amp;gt;th,.table&amp;gt;thead&amp;gt;tr&amp;gt;td.success,.table&amp;gt;thead&amp;gt;tr&amp;gt;th.success{background-color:#dff0d8}.table-hover&amp;gt;tbody&amp;gt;tr.success:hover&amp;gt;td,.table-hover&amp;gt;tbody&amp;gt;tr.success:hover&amp;gt;th,.table-hover&amp;gt;tbody&amp;gt;tr:hover&amp;gt;.success,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;td.success:hover,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;th.success:hover{background-color:#d0e9c6}.table&amp;gt;tbody&amp;gt;tr.info&amp;gt;td,.table&amp;gt;tbody&amp;gt;tr.info&amp;gt;th,.table&amp;gt;tbody&amp;gt;tr&amp;gt;td.info,.table&amp;gt;tbody&amp;gt;tr&amp;gt;th.info,.table&amp;gt;tfoot&amp;gt;tr.info&amp;gt;td,.table&amp;gt;tfoot&amp;gt;tr.info&amp;gt;th,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td.info,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th.info,.table&amp;gt;thead&amp;gt;tr.info&amp;gt;td,.table&amp;gt;thead&amp;gt;tr.info&amp;gt;th,.table&amp;gt;thead&amp;gt;tr&amp;gt;td.info,.table&amp;gt;thead&amp;gt;tr&amp;gt;th.info{background-color:#d9edf7}.table-hover&amp;gt;tbody&amp;gt;tr.info:hover&amp;gt;td,.table-hover&amp;gt;tbody&amp;gt;tr.info:hover&amp;gt;th,.table-hover&amp;gt;tbody&amp;gt;tr:hover&amp;gt;.info,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;td.info:hover,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;th.info:hover{background-color:#c4e3f3}.table&amp;gt;tbody&amp;gt;tr.warning&amp;gt;td,.table&amp;gt;tbody&amp;gt;tr.warning&amp;gt;th,.table&amp;gt;tbody&amp;gt;tr&amp;gt;td.warning,.table&amp;gt;tbody&amp;gt;tr&amp;gt;th.warning,.table&amp;gt;tfoot&amp;gt;tr.warning&amp;gt;td,.table&amp;gt;tfoot&amp;gt;tr.warning&amp;gt;th,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td.warning,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th.warning,.table&amp;gt;thead&amp;gt;tr.warning&amp;gt;td,.table&amp;gt;thead&amp;gt;tr.warning&amp;gt;th,.table&amp;gt;thead&amp;gt;tr&amp;gt;td.warning,.table&amp;gt;thead&amp;gt;tr&amp;gt;th.warning{background-color:#fcf8e3}.table-hover&amp;gt;tbody&amp;gt;tr.warning:hover&amp;gt;td,.table-hover&amp;gt;tbody&amp;gt;tr.warning:hover&amp;gt;th,.table-hover&amp;gt;tbody&amp;gt;tr:hover&amp;gt;.warning,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;td.warning:hover,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;th.warning:hover{background-color:#faf2cc}.table&amp;gt;tbody&amp;gt;tr.danger&amp;gt;td,.table&amp;gt;tbody&amp;gt;tr.danger&amp;gt;th,.table&amp;gt;tbody&amp;gt;tr&amp;gt;td.danger,.table&amp;gt;tbody&amp;gt;tr&amp;gt;th.danger,.table&amp;gt;tfoot&amp;gt;tr.danger&amp;gt;td,.table&amp;gt;tfoot&amp;gt;tr.danger&amp;gt;th,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td.danger,.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th.danger,.table&amp;gt;thead&amp;gt;tr.danger&amp;gt;td,.table&amp;gt;thead&amp;gt;tr.danger&amp;gt;th,.table&amp;gt;thead&amp;gt;tr&amp;gt;td.danger,.table&amp;gt;thead&amp;gt;tr&amp;gt;th.danger{background-color:#f2dede}.table-hover&amp;gt;tbody&amp;gt;tr.danger:hover&amp;gt;td,.table-hover&amp;gt;tbody&amp;gt;tr.danger:hover&amp;gt;th,.table-hover&amp;gt;tbody&amp;gt;tr:hover&amp;gt;.danger,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;td.danger:hover,.table-hover&amp;gt;tbody&amp;gt;tr&amp;gt;th.danger:hover{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive&amp;gt;.table{margin-bottom:0}.table-responsive&amp;gt;.table&amp;gt;tbody&amp;gt;tr&amp;gt;td,.table-responsive&amp;gt;.table&amp;gt;tbody&amp;gt;tr&amp;gt;th,.table-responsive&amp;gt;.table&amp;gt;tfoot&amp;gt;tr&amp;gt;td,.table-responsive&amp;gt;.table&amp;gt;tfoot&amp;gt;tr&amp;gt;th,.table-responsive&amp;gt;.table&amp;gt;thead&amp;gt;tr&amp;gt;td,.table-responsive&amp;gt;.table&amp;gt;thead&amp;gt;tr&amp;gt;th{white-space:nowrap}.table-responsive&amp;gt;.table-bordered{border:0}.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td:first-child,.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th:first-child,.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td:first-child,.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th:first-child,.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td:first-child,.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th:first-child{border-left:0}.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td:last-child,.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th:last-child,.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td:last-child,.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th:last-child,.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td:last-child,.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th:last-child{border-right:0}.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:last-child&amp;gt;td,.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:last-child&amp;gt;th,.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr:last-child&amp;gt;td,.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr:last-child&amp;gt;th{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;margin-top:1px\9;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=file]:focus,input[type=checkbox]:focus,input[type=radio]:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].form-control,input[type=time].form-control,input[type=datetime-local].form-control,input[type=month].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=time],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],input[type=date].input-sm,input[type=time].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=time],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],input[type=date].input-lg,input[type=time].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}select[multiple].input-sm,textarea.input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm select[multiple].form-control,.form-group-sm textarea.form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}select[multiple].input-lg,textarea.input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg select[multiple].form-control,.form-group-lg textarea.form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-inline label{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-inline label{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-inline label{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label~.form-control-feedback{top:25px}.has-feedback label.sr-only~.form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group&amp;gt;.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media (min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{color:#333;text-decoration:none}.btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default.focus,.btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active,.btn-default:active,.open&amp;gt;.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default.active.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open&amp;gt;.dropdown-toggle.btn-default.focus,.open&amp;gt;.dropdown-toggle.btn-default:focus,.open&amp;gt;.dropdown-toggle.btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default.active,.btn-default:active,.open&amp;gt;.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary.focus,.btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active,.btn-primary:active,.open&amp;gt;.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary.active.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open&amp;gt;.dropdown-toggle.btn-primary.focus,.open&amp;gt;.dropdown-toggle.btn-primary:focus,.open&amp;gt;.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary.active,.btn-primary:active,.open&amp;gt;.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success.focus,.btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active,.btn-success:active,.open&amp;gt;.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success.active.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open&amp;gt;.dropdown-toggle.btn-success.focus,.open&amp;gt;.dropdown-toggle.btn-success:focus,.open&amp;gt;.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.btn-success.active,.btn-success:active,.open&amp;gt;.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info.focus,.btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active,.btn-info:active,.open&amp;gt;.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info.active.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open&amp;gt;.dropdown-toggle.btn-info.focus,.open&amp;gt;.dropdown-toggle.btn-info:focus,.open&amp;gt;.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info.active,.btn-info:active,.open&amp;gt;.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning.focus,.btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active,.btn-warning:active,.open&amp;gt;.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning.active.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open&amp;gt;.dropdown-toggle.btn-warning.focus,.open&amp;gt;.dropdown-toggle.btn-warning:focus,.open&amp;gt;.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning.active,.btn-warning:active,.open&amp;gt;.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger.focus,.btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active,.btn-danger:active,.open&amp;gt;.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger.active.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open&amp;gt;.dropdown-toggle.btn-danger.focus,.open&amp;gt;.dropdown-toggle.btn-danger:focus,.open&amp;gt;.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger.active,.btn-danger:active,.open&amp;gt;.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;color:#337ab7;border-radius:0}.btn-link,.btn-link.active,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg&amp;gt;.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm&amp;gt;.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs&amp;gt;.btn,.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type=button].btn-block,input[type=reset].btn-block,input[type=submit].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu&amp;gt;li&amp;gt;a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu&amp;gt;li&amp;gt;a:focus,.dropdown-menu&amp;gt;li&amp;gt;a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu&amp;gt;.active&amp;gt;a,.dropdown-menu&amp;gt;.active&amp;gt;a:focus,.dropdown-menu&amp;gt;.active&amp;gt;a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu&amp;gt;.disabled&amp;gt;a,.dropdown-menu&amp;gt;.disabled&amp;gt;a:focus,.dropdown-menu&amp;gt;.disabled&amp;gt;a:hover{color:#777}.dropdown-menu&amp;gt;.disabled&amp;gt;a:focus,.dropdown-menu&amp;gt;.disabled&amp;gt;a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open&amp;gt;.dropdown-menu{display:block}.open&amp;gt;a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right&amp;gt;.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:&amp;quot;&amp;quot;;border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group-vertical&amp;gt;.btn,.btn-group&amp;gt;.btn{position:relative;float:left}.btn-group-vertical&amp;gt;.btn.active,.btn-group-vertical&amp;gt;.btn:active,.btn-group-vertical&amp;gt;.btn:focus,.btn-group-vertical&amp;gt;.btn:hover,.btn-group&amp;gt;.btn.active,.btn-group&amp;gt;.btn:active,.btn-group&amp;gt;.btn:focus,.btn-group&amp;gt;.btn:hover{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar&amp;gt;.btn,.btn-toolbar&amp;gt;.btn-group,.btn-toolbar&amp;gt;.input-group{margin-left:5px}.btn-group&amp;gt;.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group&amp;gt;.btn:first-child{margin-left:0}.btn-group&amp;gt;.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&amp;gt;.btn:last-child:not(:first-child),.btn-group&amp;gt;.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group&amp;gt;.btn-group{float:left}.btn-group&amp;gt;.btn-group:not(:first-child):not(:last-child)&amp;gt;.btn{border-radius:0}.btn-group&amp;gt;.btn-group:first-child:not(:last-child)&amp;gt;.btn:last-child,.btn-group&amp;gt;.btn-group:first-child:not(:last-child)&amp;gt;.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group&amp;gt;.btn-group:last-child:not(:first-child)&amp;gt;.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group&amp;gt;.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group&amp;gt;.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical&amp;gt;.btn,.btn-group-vertical&amp;gt;.btn-group,.btn-group-vertical&amp;gt;.btn-group&amp;gt;.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical&amp;gt;.btn-group&amp;gt;.btn{float:none}.btn-group-vertical&amp;gt;.btn+.btn,.btn-group-vertical&amp;gt;.btn+.btn-group,.btn-group-vertical&amp;gt;.btn-group+.btn,.btn-group-vertical&amp;gt;.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical&amp;gt;.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical&amp;gt;.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&amp;gt;.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.btn-group-vertical&amp;gt;.btn-group:not(:first-child):not(:last-child)&amp;gt;.btn{border-radius:0}.btn-group-vertical&amp;gt;.btn-group:first-child:not(:last-child)&amp;gt;.btn:last-child,.btn-group-vertical&amp;gt;.btn-group:first-child:not(:last-child)&amp;gt;.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical&amp;gt;.btn-group:last-child:not(:first-child)&amp;gt;.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified&amp;gt;.btn,.btn-group-justified&amp;gt;.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified&amp;gt;.btn-group .btn{width:100%}.btn-group-justified&amp;gt;.btn-group .dropdown-menu{left:auto}[data-toggle=buttons]&amp;gt;.btn input[type=checkbox],[data-toggle=buttons]&amp;gt;.btn input[type=radio],[data-toggle=buttons]&amp;gt;.btn-group&amp;gt;.btn input[type=checkbox],[data-toggle=buttons]&amp;gt;.btn-group&amp;gt;.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*=col-]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg&amp;gt;.form-control,.input-group-lg&amp;gt;.input-group-addon,.input-group-lg&amp;gt;.input-group-btn&amp;gt;.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg&amp;gt;.form-control,select.input-group-lg&amp;gt;.input-group-addon,select.input-group-lg&amp;gt;.input-group-btn&amp;gt;.btn{height:46px;line-height:46px}select[multiple].input-group-lg&amp;gt;.form-control,select[multiple].input-group-lg&amp;gt;.input-group-addon,select[multiple].input-group-lg&amp;gt;.input-group-btn&amp;gt;.btn,textarea.input-group-lg&amp;gt;.form-control,textarea.input-group-lg&amp;gt;.input-group-addon,textarea.input-group-lg&amp;gt;.input-group-btn&amp;gt;.btn{height:auto}.input-group-sm&amp;gt;.form-control,.input-group-sm&amp;gt;.input-group-addon,.input-group-sm&amp;gt;.input-group-btn&amp;gt;.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm&amp;gt;.form-control,select.input-group-sm&amp;gt;.input-group-addon,select.input-group-sm&amp;gt;.input-group-btn&amp;gt;.btn{height:30px;line-height:30px}select[multiple].input-group-sm&amp;gt;.form-control,select[multiple].input-group-sm&amp;gt;.input-group-addon,select[multiple].input-group-sm&amp;gt;.input-group-btn&amp;gt;.btn,textarea.input-group-sm&amp;gt;.form-control,textarea.input-group-sm&amp;gt;.input-group-addon,textarea.input-group-sm&amp;gt;.input-group-btn&amp;gt;.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type=checkbox],.input-group-addon input[type=radio]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child&amp;gt;.btn,.input-group-btn:first-child&amp;gt;.btn-group&amp;gt;.btn,.input-group-btn:first-child&amp;gt;.dropdown-toggle,.input-group-btn:last-child&amp;gt;.btn-group:not(:last-child)&amp;gt;.btn,.input-group-btn:last-child&amp;gt;.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child&amp;gt;.btn-group:not(:first-child)&amp;gt;.btn,.input-group-btn:first-child&amp;gt;.btn:not(:first-child),.input-group-btn:last-child&amp;gt;.btn,.input-group-btn:last-child&amp;gt;.btn-group&amp;gt;.btn,.input-group-btn:last-child&amp;gt;.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn&amp;gt;.btn{position:relative}.input-group-btn&amp;gt;.btn+.btn{margin-left:-1px}.input-group-btn&amp;gt;.btn:active,.input-group-btn&amp;gt;.btn:focus,.input-group-btn&amp;gt;.btn:hover{z-index:2}.input-group-btn:first-child&amp;gt;.btn,.input-group-btn:first-child&amp;gt;.btn-group{margin-right:-1px}.input-group-btn:last-child&amp;gt;.btn,.input-group-btn:last-child&amp;gt;.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav&amp;gt;li{position:relative;display:block}.nav&amp;gt;li&amp;gt;a{position:relative;display:block;padding:10px 15px}.nav&amp;gt;li&amp;gt;a:focus,.nav&amp;gt;li&amp;gt;a:hover{text-decoration:none;background-color:#eee}.nav&amp;gt;li.disabled&amp;gt;a{color:#777}.nav&amp;gt;li.disabled&amp;gt;a:focus,.nav&amp;gt;li.disabled&amp;gt;a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open&amp;gt;a,.nav .open&amp;gt;a:focus,.nav .open&amp;gt;a:hover{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav&amp;gt;li&amp;gt;a&amp;gt;img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs&amp;gt;li{float:left;margin-bottom:-1px}.nav-tabs&amp;gt;li&amp;gt;a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs&amp;gt;li&amp;gt;a:hover{border-color:#eee #eee #ddd}.nav-tabs&amp;gt;li.active&amp;gt;a,.nav-tabs&amp;gt;li.active&amp;gt;a:focus,.nav-tabs&amp;gt;li.active&amp;gt;a:hover{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified&amp;gt;li{float:none}.nav-tabs.nav-justified&amp;gt;li&amp;gt;a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified&amp;gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-tabs.nav-justified&amp;gt;li{display:table-cell;width:1%}.nav-tabs.nav-justified&amp;gt;li&amp;gt;a{margin-bottom:0}}.nav-tabs.nav-justified&amp;gt;li&amp;gt;a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified&amp;gt;.active&amp;gt;a,.nav-tabs.nav-justified&amp;gt;.active&amp;gt;a:focus,.nav-tabs.nav-justified&amp;gt;.active&amp;gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs.nav-justified&amp;gt;li&amp;gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified&amp;gt;.active&amp;gt;a,.nav-tabs.nav-justified&amp;gt;.active&amp;gt;a:focus,.nav-tabs.nav-justified&amp;gt;.active&amp;gt;a:hover{border-bottom-color:#fff}}.nav-pills&amp;gt;li{float:left}.nav-pills&amp;gt;li&amp;gt;a{border-radius:4px}.nav-pills&amp;gt;li+li{margin-left:2px}.nav-pills&amp;gt;li.active&amp;gt;a,.nav-pills&amp;gt;li.active&amp;gt;a:focus,.nav-pills&amp;gt;li.active&amp;gt;a:hover{color:#fff;background-color:#337ab7}.nav-stacked&amp;gt;li{float:none}.nav-stacked&amp;gt;li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified&amp;gt;li{float:none}.nav-justified&amp;gt;li&amp;gt;a{margin-bottom:5px;text-align:center}.nav-justified&amp;gt;.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:768px){.nav-justified&amp;gt;li{display:table-cell;width:1%}.nav-justified&amp;gt;li&amp;gt;a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified&amp;gt;li&amp;gt;a{margin-right:0;border-radius:4px}.nav-tabs-justified&amp;gt;.active&amp;gt;a,.nav-tabs-justified&amp;gt;.active&amp;gt;a:focus,.nav-tabs-justified&amp;gt;.active&amp;gt;a:hover{border:1px solid #ddd}@media (min-width:768px){.nav-tabs-justified&amp;gt;li&amp;gt;a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified&amp;gt;.active&amp;gt;a,.nav-tabs-justified&amp;gt;.active&amp;gt;a:focus,.nav-tabs-justified&amp;gt;.active&amp;gt;a:hover{border-bottom-color:#fff}}.tab-content&amp;gt;.tab-pane{display:none}.tab-content&amp;gt;.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.navbar{border-radius:4px}}@media (min-width:768px){.navbar-header{float:left}}.navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.navbar-collapse.in{overflow-y:auto}@media (min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid&amp;gt;.navbar-collapse,.container-fluid&amp;gt;.navbar-header,.container&amp;gt;.navbar-collapse,.container&amp;gt;.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid&amp;gt;.navbar-collapse,.container-fluid&amp;gt;.navbar-header,.container&amp;gt;.navbar-collapse,.container&amp;gt;.navbar-header{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:focus,.navbar-brand:hover{text-decoration:none}.navbar-brand&amp;gt;img{display:block}@media (min-width:768px){.navbar&amp;gt;.container .navbar-brand,.navbar&amp;gt;.container-fluid .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav&amp;gt;li&amp;gt;a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu .dropdown-header,.navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a{line-height:20px}.navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a:focus,.navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a:hover{background-image:none}}@media (min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav&amp;gt;li{float:left}.navbar-nav&amp;gt;li&amp;gt;a{padding-top:15px;padding-bottom:15px}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group&amp;gt;.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.navbar-nav&amp;gt;li&amp;gt;.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav&amp;gt;li&amp;gt;.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right~.navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:focus,.navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav&amp;gt;li&amp;gt;a{color:#777}.navbar-default .navbar-nav&amp;gt;li&amp;gt;a:focus,.navbar-default .navbar-nav&amp;gt;li&amp;gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav&amp;gt;.active&amp;gt;a,.navbar-default .navbar-nav&amp;gt;.active&amp;gt;a:focus,.navbar-default .navbar-nav&amp;gt;.active&amp;gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav&amp;gt;.disabled&amp;gt;a,.navbar-default .navbar-nav&amp;gt;.disabled&amp;gt;a:focus,.navbar-default .navbar-nav&amp;gt;.disabled&amp;gt;a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav&amp;gt;.open&amp;gt;a,.navbar-default .navbar-nav&amp;gt;.open&amp;gt;a:focus,.navbar-default .navbar-nav&amp;gt;.open&amp;gt;a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a,.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;.disabled&amp;gt;a,.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;.disabled&amp;gt;a:focus,.navbar-default .navbar-nav .open .dropdown-menu&amp;gt;.disabled&amp;gt;a:hover{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav&amp;gt;li&amp;gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav&amp;gt;li&amp;gt;a:focus,.navbar-inverse .navbar-nav&amp;gt;li&amp;gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav&amp;gt;.active&amp;gt;a,.navbar-inverse .navbar-nav&amp;gt;.active&amp;gt;a:focus,.navbar-inverse .navbar-nav&amp;gt;.active&amp;gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav&amp;gt;.disabled&amp;gt;a,.navbar-inverse .navbar-nav&amp;gt;.disabled&amp;gt;a:focus,.navbar-inverse .navbar-nav&amp;gt;.disabled&amp;gt;a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav&amp;gt;.open&amp;gt;a,.navbar-inverse .navbar-nav&amp;gt;.open&amp;gt;a:focus,.navbar-inverse .navbar-nav&amp;gt;.open&amp;gt;a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;li&amp;gt;a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.disabled&amp;gt;a,.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.disabled&amp;gt;a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu&amp;gt;.disabled&amp;gt;a:hover{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb&amp;gt;li{display:inline-block}.breadcrumb&amp;gt;li+li:before{padding:0 5px;color:#ccc;content:&amp;quot;/\00a0&amp;quot;}.breadcrumb&amp;gt;.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination&amp;gt;li{display:inline}.pagination&amp;gt;li&amp;gt;a,.pagination&amp;gt;li&amp;gt;span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination&amp;gt;li:first-child&amp;gt;a,.pagination&amp;gt;li:first-child&amp;gt;span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination&amp;gt;li:last-child&amp;gt;a,.pagination&amp;gt;li:last-child&amp;gt;span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination&amp;gt;li&amp;gt;a:focus,.pagination&amp;gt;li&amp;gt;a:hover,.pagination&amp;gt;li&amp;gt;span:focus,.pagination&amp;gt;li&amp;gt;span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination&amp;gt;.active&amp;gt;a,.pagination&amp;gt;.active&amp;gt;a:focus,.pagination&amp;gt;.active&amp;gt;a:hover,.pagination&amp;gt;.active&amp;gt;span,.pagination&amp;gt;.active&amp;gt;span:focus,.pagination&amp;gt;.active&amp;gt;span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination&amp;gt;.disabled&amp;gt;a,.pagination&amp;gt;.disabled&amp;gt;a:focus,.pagination&amp;gt;.disabled&amp;gt;a:hover,.pagination&amp;gt;.disabled&amp;gt;span,.pagination&amp;gt;.disabled&amp;gt;span:focus,.pagination&amp;gt;.disabled&amp;gt;span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg&amp;gt;li&amp;gt;a,.pagination-lg&amp;gt;li&amp;gt;span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg&amp;gt;li:first-child&amp;gt;a,.pagination-lg&amp;gt;li:first-child&amp;gt;span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg&amp;gt;li:last-child&amp;gt;a,.pagination-lg&amp;gt;li:last-child&amp;gt;span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm&amp;gt;li&amp;gt;a,.pagination-sm&amp;gt;li&amp;gt;span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm&amp;gt;li:first-child&amp;gt;a,.pagination-sm&amp;gt;li:first-child&amp;gt;span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm&amp;gt;li:last-child&amp;gt;a,.pagination-sm&amp;gt;li:last-child&amp;gt;span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li&amp;gt;a,.pager li&amp;gt;span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li&amp;gt;a:focus,.pager li&amp;gt;a:hover{text-decoration:none;background-color:#eee}.pager .next&amp;gt;a,.pager .next&amp;gt;span{float:right}.pager .previous&amp;gt;a,.pager .previous&amp;gt;span{float:left}.pager .disabled&amp;gt;a,.pager .disabled&amp;gt;a:focus,.pager .disabled&amp;gt;a:hover,.pager .disabled&amp;gt;span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs&amp;gt;.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active&amp;gt;.badge,.nav-pills&amp;gt;.active&amp;gt;a&amp;gt;.badge{color:#337ab7;background-color:#fff}.list-group-item&amp;gt;.badge{float:right}.list-group-item&amp;gt;.badge+.badge{margin-right:5px}.nav-pills&amp;gt;li&amp;gt;a&amp;gt;.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron .h1,.jumbotron h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron&amp;gt;hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron .h1,.jumbotron h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.thumbnail a&amp;gt;img,.thumbnail&amp;gt;img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:700}.alert&amp;gt;p,.alert&amp;gt;ul{margin-bottom:0}.alert&amp;gt;p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.progress-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media&amp;gt;.pull-right{padding-left:10px}.media-left,.media&amp;gt;.pull-left{padding-right:10px}.media-body,.media-left,.media-right{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading&amp;gt;.small,.list-group-item.active .list-group-item-heading&amp;gt;small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading&amp;gt;.small,.list-group-item.active:focus .list-group-item-heading&amp;gt;small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading&amp;gt;.small,.list-group-item.active:hover .list-group-item-heading&amp;gt;small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading&amp;gt;.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title&amp;gt;.small,.panel-title&amp;gt;.small&amp;gt;a,.panel-title&amp;gt;a,.panel-title&amp;gt;small,.panel-title&amp;gt;small&amp;gt;a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&amp;gt;.list-group,.panel&amp;gt;.panel-collapse&amp;gt;.list-group{margin-bottom:0}.panel&amp;gt;.list-group .list-group-item,.panel&amp;gt;.panel-collapse&amp;gt;.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel&amp;gt;.list-group:first-child .list-group-item:first-child,.panel&amp;gt;.panel-collapse&amp;gt;.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel&amp;gt;.list-group:last-child .list-group-item:last-child,.panel&amp;gt;.panel-collapse&amp;gt;.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&amp;gt;.panel-heading+.panel-collapse&amp;gt;.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel&amp;gt;.panel-collapse&amp;gt;.table,.panel&amp;gt;.table,.panel&amp;gt;.table-responsive&amp;gt;.table{margin-bottom:0}.panel&amp;gt;.panel-collapse&amp;gt;.table caption,.panel&amp;gt;.table caption,.panel&amp;gt;.table-responsive&amp;gt;.table caption{padding-right:15px;padding-left:15px}.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child,.panel&amp;gt;.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child,.panel&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child,.panel&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child td:first-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child th:first-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child td:first-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child th:first-child,.panel&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child td:first-child,.panel&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child th:first-child,.panel&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child td:first-child,.panel&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child th:first-child{border-top-left-radius:3px}.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child td:last-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child th:last-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child td:last-child,.panel&amp;gt;.table-responsive:first-child&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child th:last-child,.panel&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child td:last-child,.panel&amp;gt;.table:first-child&amp;gt;tbody:first-child&amp;gt;tr:first-child th:last-child,.panel&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child td:last-child,.panel&amp;gt;.table:first-child&amp;gt;thead:first-child&amp;gt;tr:first-child th:last-child{border-top-right-radius:3px}.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child,.panel&amp;gt;.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child,.panel&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child,.panel&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child td:first-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child th:first-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child td:first-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child th:first-child,.panel&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child td:first-child,.panel&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child th:first-child,.panel&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child td:first-child,.panel&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child th:first-child{border-bottom-left-radius:3px}.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child td:last-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child th:last-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child td:last-child,.panel&amp;gt;.table-responsive:last-child&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child th:last-child,.panel&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child td:last-child,.panel&amp;gt;.table:last-child&amp;gt;tbody:last-child&amp;gt;tr:last-child th:last-child,.panel&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child td:last-child,.panel&amp;gt;.table:last-child&amp;gt;tfoot:last-child&amp;gt;tr:last-child th:last-child{border-bottom-right-radius:3px}.panel&amp;gt;.panel-body+.table,.panel&amp;gt;.panel-body+.table-responsive,.panel&amp;gt;.table+.panel-body,.panel&amp;gt;.table-responsive+.panel-body{border-top:1px solid #ddd}.panel&amp;gt;.table&amp;gt;tbody:first-child&amp;gt;tr:first-child td,.panel&amp;gt;.table&amp;gt;tbody:first-child&amp;gt;tr:first-child th{border-top:0}.panel&amp;gt;.table-bordered,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered{border:0}.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td:first-child,.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th:first-child,.panel&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td:first-child,.panel&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th:first-child,.panel&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td:first-child,.panel&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th:first-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td:first-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th:first-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td:first-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th:first-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td:first-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th:first-child{border-left:0}.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td:last-child,.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th:last-child,.panel&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td:last-child,.panel&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th:last-child,.panel&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td:last-child,.panel&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th:last-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;td:last-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr&amp;gt;th:last-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;td:last-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr&amp;gt;th:last-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;td:last-child,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr&amp;gt;th:last-child{border-right:0}.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:first-child&amp;gt;td,.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:first-child&amp;gt;th,.panel&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr:first-child&amp;gt;td,.panel&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr:first-child&amp;gt;th,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:first-child&amp;gt;td,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:first-child&amp;gt;th,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr:first-child&amp;gt;td,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;thead&amp;gt;tr:first-child&amp;gt;th{border-bottom:0}.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:last-child&amp;gt;td,.panel&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:last-child&amp;gt;th,.panel&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr:last-child&amp;gt;td,.panel&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr:last-child&amp;gt;th,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:last-child&amp;gt;td,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tbody&amp;gt;tr:last-child&amp;gt;th,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr:last-child&amp;gt;td,.panel&amp;gt;.table-responsive&amp;gt;.table-bordered&amp;gt;tfoot&amp;gt;tr:last-child&amp;gt;th{border-bottom:0}.panel&amp;gt;.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse&amp;gt;.list-group,.panel-group .panel-heading+.panel-collapse&amp;gt;.panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default&amp;gt;.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default&amp;gt;.panel-heading+.panel-collapse&amp;gt;.panel-body{border-top-color:#ddd}.panel-default&amp;gt;.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default&amp;gt;.panel-footer+.panel-collapse&amp;gt;.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary&amp;gt;.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary&amp;gt;.panel-heading+.panel-collapse&amp;gt;.panel-body{border-top-color:#337ab7}.panel-primary&amp;gt;.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary&amp;gt;.panel-footer+.panel-collapse&amp;gt;.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success&amp;gt;.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success&amp;gt;.panel-heading+.panel-collapse&amp;gt;.panel-body{border-top-color:#d6e9c6}.panel-success&amp;gt;.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success&amp;gt;.panel-footer+.panel-collapse&amp;gt;.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info&amp;gt;.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info&amp;gt;.panel-heading+.panel-collapse&amp;gt;.panel-body{border-top-color:#bce8f1}.panel-info&amp;gt;.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info&amp;gt;.panel-footer+.panel-collapse&amp;gt;.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning&amp;gt;.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning&amp;gt;.panel-heading+.panel-collapse&amp;gt;.panel-body{border-top-color:#faebcc}.panel-warning&amp;gt;.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning&amp;gt;.panel-footer+.panel-collapse&amp;gt;.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger&amp;gt;.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger&amp;gt;.panel-heading+.panel-collapse&amp;gt;.panel-body{border-top-color:#ebccd1}.panel-danger&amp;gt;.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger&amp;gt;.panel-footer+.panel-collapse&amp;gt;.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media (min-width:992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1070;display:block;font-family:&amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif;font-size:12px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:&amp;quot;Helvetica Neue&amp;quot;,Helvetica,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover&amp;gt;.arrow,.popover&amp;gt;.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover&amp;gt;.arrow{border-width:11px}.popover&amp;gt;.arrow:after{content:&amp;quot;&amp;quot;;border-width:10px}.popover.top&amp;gt;.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top&amp;gt;.arrow:after{bottom:1px;margin-left:-10px;content:&amp;quot; &amp;quot;;border-top-color:#fff;border-bottom-width:0}.popover.right&amp;gt;.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right&amp;gt;.arrow:after{bottom:-10px;left:1px;content:&amp;quot; &amp;quot;;border-right-color:#fff;border-left-width:0}.popover.bottom&amp;gt;.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom&amp;gt;.arrow:after{top:1px;margin-left:-10px;content:&amp;quot; &amp;quot;;border-top-width:0;border-bottom-color:#fff}.popover.left&amp;gt;.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left&amp;gt;.arrow:after{right:1px;bottom:-10px;content:&amp;quot; &amp;quot;;border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner&amp;gt;.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner&amp;gt;.item&amp;gt;a&amp;gt;img,.carousel-inner&amp;gt;.item&amp;gt;img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner&amp;gt;.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner&amp;gt;.item.active.right,.carousel-inner&amp;gt;.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner&amp;gt;.item.active.left,.carousel-inner&amp;gt;.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner&amp;gt;.item.active,.carousel-inner&amp;gt;.item.next.left,.carousel-inner&amp;gt;.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner&amp;gt;.active,.carousel-inner&amp;gt;.next,.carousel-inner&amp;gt;.prev{display:block}.carousel-inner&amp;gt;.active{left:0}.carousel-inner&amp;gt;.next,.carousel-inner&amp;gt;.prev{position:absolute;top:0;width:100%}.carousel-inner&amp;gt;.next{left:100%}.carousel-inner&amp;gt;.prev{left:-100%}.carousel-inner&amp;gt;.next.left,.carousel-inner&amp;gt;.prev.right{left:0}.carousel-inner&amp;gt;.active.left{left:-100%}.carousel-inner&amp;gt;.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}.carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#80000000&amp;#x27;, endColorstr=&amp;#x27;#00000000&amp;#x27;, GradientType=1);background-repeat:repeat-x}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#00000000&amp;#x27;, endColorstr=&amp;#x27;#80000000&amp;#x27;, GradientType=1);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:&amp;#x27;\2039&amp;#x27;}.carousel-control .icon-next:before{content:&amp;#x27;\203a&amp;#x27;}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.btn-group-vertical&amp;gt;.btn-group:after,.btn-group-vertical&amp;gt;.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.clearfix:after,.clearfix:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before{display:table;content:&amp;quot; &amp;quot;}.btn-group-vertical&amp;gt;.btn-group:after,.btn-toolbar:after,.clearfix:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block{display:none!important}@media (max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}td.visible-xs,th.visible-xs{display:table-cell!important}}@media (max-width:767px){.visible-xs-block{display:block!important}}@media (max-width:767px){.visible-xs-inline{display:inline!important}}@media (max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}td.visible-sm,th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}td.visible-md,th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}td.visible-lg,th.visible-lg{display:table-cell!important}}@media (min-width:1200px){.visible-lg-block{display:block!important}}@media (min-width:1200px){.visible-lg-inline{display:inline!important}}@media (min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media (min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}td.visible-print,th.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
/*# sourceMappingURL=bootstrap.min.css.map *//*!
* Bootstrap v3.3.7 (http://getbootstrap.com)
* Copyright 2011-2016 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] .btn-info,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-success,fieldset[disabled] .btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffffffff&amp;#x27;, endColorstr=&amp;#x27;#ffe0e0e0&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff337ab7&amp;#x27;, endColorstr=&amp;#x27;#ff265a88&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff5cb85c&amp;#x27;, endColorstr=&amp;#x27;#ff419641&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success.disabled.active,.btn-success.disabled.focus,.btn-success.disabled:active,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled],.btn-success[disabled].active,.btn-success[disabled].focus,.btn-success[disabled]:active,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success,fieldset[disabled] .btn-success.active,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff5bc0de&amp;#x27;, endColorstr=&amp;#x27;#ff2aabd2&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info.disabled.active,.btn-info.disabled.focus,.btn-info.disabled:active,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled],.btn-info[disabled].active,.btn-info[disabled].focus,.btn-info[disabled]:active,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info.active,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fff0ad4e&amp;#x27;, endColorstr=&amp;#x27;#ffeb9316&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning.disabled.active,.btn-warning.disabled.focus,.btn-warning.disabled:active,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled],.btn-warning[disabled].active,.btn-warning[disabled].focus,.btn-warning[disabled]:active,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning,fieldset[disabled] .btn-warning.active,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffd9534f&amp;#x27;, endColorstr=&amp;#x27;#ffc12e2a&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger.disabled.active,.btn-danger.disabled.focus,.btn-danger.disabled:active,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled],.btn-danger[disabled].active,.btn-danger[disabled].focus,.btn-danger[disabled]:active,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger.active,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu&amp;gt;li&amp;gt;a:focus,.dropdown-menu&amp;gt;li&amp;gt;a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fff5f5f5&amp;#x27;, endColorstr=&amp;#x27;#ffe8e8e8&amp;#x27;, GradientType=0);background-repeat:repeat-x}.dropdown-menu&amp;gt;.active&amp;gt;a,.dropdown-menu&amp;gt;.active&amp;gt;a:focus,.dropdown-menu&amp;gt;.active&amp;gt;a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff337ab7&amp;#x27;, endColorstr=&amp;#x27;#ff2e6da4&amp;#x27;, GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffffffff&amp;#x27;, endColorstr=&amp;#x27;#fff8f8f8&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav&amp;gt;.active&amp;gt;a,.navbar-default .navbar-nav&amp;gt;.open&amp;gt;a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffdbdbdb&amp;#x27;, endColorstr=&amp;#x27;#ffe2e2e2&amp;#x27;, GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav&amp;gt;li&amp;gt;a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff3c3c3c&amp;#x27;, endColorstr=&amp;#x27;#ff222222&amp;#x27;, GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px}.navbar-inverse .navbar-nav&amp;gt;.active&amp;gt;a,.navbar-inverse .navbar-nav&amp;gt;.open&amp;gt;a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff080808&amp;#x27;, endColorstr=&amp;#x27;#ff0f0f0f&amp;#x27;, GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav&amp;gt;li&amp;gt;a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a,.navbar .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a:focus,.navbar .navbar-nav .open .dropdown-menu&amp;gt;.active&amp;gt;a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff337ab7&amp;#x27;, endColorstr=&amp;#x27;#ff2e6da4&amp;#x27;, GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffdff0d8&amp;#x27;, endColorstr=&amp;#x27;#ffc8e5bc&amp;#x27;, GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffd9edf7&amp;#x27;, endColorstr=&amp;#x27;#ffb9def0&amp;#x27;, GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fffcf8e3&amp;#x27;, endColorstr=&amp;#x27;#fff8efc0&amp;#x27;, GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fff2dede&amp;#x27;, endColorstr=&amp;#x27;#ffe7c3c3&amp;#x27;, GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffebebeb&amp;#x27;, endColorstr=&amp;#x27;#fff5f5f5&amp;#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff337ab7&amp;#x27;, endColorstr=&amp;#x27;#ff286090&amp;#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff5cb85c&amp;#x27;, endColorstr=&amp;#x27;#ff449d44&amp;#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff5bc0de&amp;#x27;, endColorstr=&amp;#x27;#ff31b0d5&amp;#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fff0ad4e&amp;#x27;, endColorstr=&amp;#x27;#ffec971f&amp;#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffd9534f&amp;#x27;, endColorstr=&amp;#x27;#ffc9302c&amp;#x27;, GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff337ab7&amp;#x27;, endColorstr=&amp;#x27;#ff2b669a&amp;#x27;, GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default&amp;gt;.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fff5f5f5&amp;#x27;, endColorstr=&amp;#x27;#ffe8e8e8&amp;#x27;, GradientType=0);background-repeat:repeat-x}.panel-primary&amp;gt;.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ff337ab7&amp;#x27;, endColorstr=&amp;#x27;#ff2e6da4&amp;#x27;, GradientType=0);background-repeat:repeat-x}.panel-success&amp;gt;.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffdff0d8&amp;#x27;, endColorstr=&amp;#x27;#ffd0e9c6&amp;#x27;, GradientType=0);background-repeat:repeat-x}.panel-info&amp;gt;.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffd9edf7&amp;#x27;, endColorstr=&amp;#x27;#ffc4e3f3&amp;#x27;, GradientType=0);background-repeat:repeat-x}.panel-warning&amp;gt;.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fffcf8e3&amp;#x27;, endColorstr=&amp;#x27;#fffaf2cc&amp;#x27;, GradientType=0);background-repeat:repeat-x}.panel-danger&amp;gt;.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#fff2dede&amp;#x27;, endColorstr=&amp;#x27;#ffebcccc&amp;#x27;, GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=&amp;#x27;#ffe8e8e8&amp;#x27;, endColorstr=&amp;#x27;#fff5f5f5&amp;#x27;, GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)}
/*# sourceMappingURL=bootstrap-theme.min.css.map */ &amp;lt;/style&amp;gt;&amp;lt;style&amp;gt;body {
padding-top: 80px;
}
.content .container-fluid{
margin-left: 20px !important;
margin-right: 20px !important;
margin-bottom: 20px;
}
&lt;p>.page-header{
border:0 !important;
}&lt;/p>
&lt;p>.row.variable, .section-items &amp;gt; .row {
border: 1px solid #e1e1e8;
border-top: hidden;
}&lt;/p>
&lt;p>.row.spacing{
padding: 2em 1em;
}&lt;/p>
&lt;p>.row.header {
border-bottom: 1px solid #e1e1e8;
/&lt;em>background-color: #f5f5f5;&lt;/em>/
padding-left: 2em;
}&lt;/p>
&lt;p>.dl-horizontal dt {
text-align: left;
padding-right: 1em;
white-space: normal;
}&lt;/p>
&lt;p>.dl-horizontal dd {
margin-left: 0;
}&lt;/p>
&lt;p>.col-md-12 {
padding-left: 2em;
}&lt;/p>
&lt;p>.indent {
margin-left: 1em;
}&lt;/p>
&lt;p>.center-img {
margin-left: auto !important;
margin-right: auto !important;
display: block;
}&lt;/p>
&lt;p>/* Table example_values */
table.example_values {
border: 0;
}&lt;/p>
&lt;p>.example_values th {
border: 0;
padding: 0;
color: #555;
font-weight: 600;
}&lt;/p>
&lt;p>.example_values tr, .example_values td {
border: 0;
padding: 0;
color: #555;
}&lt;/p>
&lt;p>/* STATS */
table.stats, table.sample, table.duplicate{
border: 0;
}&lt;/p>
&lt;p>.stats tr, .sample tr, .duplicate tr {
border: 0;
}&lt;/p>
&lt;p>.stats th, .stats td{
color: #555;
border: 0;
}&lt;/p>
&lt;p>.stats th {
padding: 0 2em 0 0;
font-weight: 600;
}&lt;/p>
&lt;p>.stats td {
padding: 1px;
}&lt;/p>
&lt;p>/* Sample table */
table.sample, table.duplicate{
margin-bottom: 2em;
margin-left: 1em;
}&lt;/p>
&lt;p>.sample td, .sample th, .duplicate td, .duplicate th {
padding: 0.5em;
white-space: nowrap;
border: 0;&lt;/p>
&lt;p>}&lt;/p>
&lt;p>.sample thead, .duplicate thead {
border-top: 0;
border-bottom: 2px solid #ddd;
}&lt;/p>
&lt;p>.sample td, .duplicate td {
width: 100%;
}&lt;/p>
&lt;p>/* There is no good solution available to make the divs equal height and then center &amp;hellip; */
.histogram {
margin-top: 3em;
}&lt;/p>
&lt;p>/* Freq table */
table.freq {
margin-bottom: 2em;
border: 0;
}&lt;/p>
&lt;p>table.freq th, table.freq tr, table.freq td {
border: 0;
padding: 0;
}&lt;/p>
&lt;p>.freq thead {
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;&lt;/p>
&lt;p>}&lt;/p>
&lt;p>/* Freq mini */
.freq.mini td {
width: 50%;
padding: 1px;
font-size: 12px;&lt;/p>
&lt;p>}&lt;/p>
&lt;p>table.freq.mini {
width: 100%;
}&lt;/p>
&lt;p>.freq.mini th {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 5em;
font-weight: 400;
text-align: right;
padding-right: 0.5em;
}&lt;/p>
&lt;p>/* Message classes */
.missing {
color: #a94442;
}&lt;/p>
&lt;p>.alert, .alert &amp;gt; th, .alert &amp;gt; td {
color: #a94442;
}&lt;/p>
&lt;p>.ignore {
opacity: 0.4;
}&lt;/p>
&lt;p>/* Bars in tables */
.freq.table{
table-layout: fixed;
}&lt;/p>
&lt;p>.freq:not(.mini) tr td:nth-child(1), .freq:not(.mini) tr th:nth-child(1){
width: auto;
max-width: none;&lt;/p>
&lt;pre>&lt;code>white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&lt;/code>&lt;/pre>
&lt;p>}&lt;/p>
&lt;p>.freq:not(.mini) tr td:nth-child(2), .freq:not(.mini) tr td:nth-child(3), .freq:not(.mini) tr th:nth-child(2), .freq:not(.mini) tr th:nth-child(3){
width: 100px;
text-align: right;
}
.freq:not(.mini) tr td:nth-child(4), .freq:not(.mini) tr th:nth-child(4){
width:200px;
}&lt;/p>
&lt;p>.freq .bar {
float: left;
width: 0;
height: 100%;
line-height: 20px;
color: #fff;
text-align: center;
background-color: #337ab7;
border-radius: 3px;
margin-right: 4px;
}&lt;/p>
&lt;p>.other .bar {
background-color: #999;
}&lt;/p>
&lt;p>.missing .bar {
background-color: #a94442;
}&lt;/p>
&lt;p>.tooltip-inner {
width: 100%;
white-space: nowrap;
text-align: left;
}&lt;/p>
&lt;p>.extrapadding {
padding: 2em;
}&lt;/p>
&lt;p>.variable .h4 {
text-overflow: ellipsis;
display:inline-block;
width: calc(90%); /* The trick is here! */
overflow:hidden;
}&lt;/p>
&lt;p>.variable.ignore .h4{
text-decoration: line-through;
}&lt;/p>
&lt;p>.table-responsive{
overflow: scroll;
width: 100%;
overflow-y: hidden;
}
.img-responsive{
max-width: 99%;
}
.footer-text{
padding:20px;
}&lt;/p>
&lt;p>table.list-warnings td{
padding-right:10px;
}&lt;/p>
&lt;p>a.anchor-pos {
display: block;
position: relative;
top: -70px;
visibility: hidden;
}&lt;/p>
&lt;p>a.anchor-pos-variable{
/&lt;em>top: -70px;&lt;/em>/
}&lt;/p>
&lt;p>#sample-container, #duplicate-container{
overflow: auto;
width: 100%;
overflow-y: hidden;
}&lt;/p>
&lt;p>#overview-content td, #overview-content th{
border-top: 0;
line-height: 1;
}&lt;/p>
&lt;p>.variable-description{
color: #777;
font-size: 10pt;
margin-top: 10px;
font-style: italic;
}&lt;/p>
&lt;p>select.multiple{
width: 180px;
height: 500px;
margin: 10px 0;
}&lt;/p>
&lt;p>.named-list-item{
padding: 1em;
}&lt;/p>
&lt;p>/* not printing tabs */
@media print {
.tab-content &amp;gt; .tab-pane, .collapse {
display: block !important;
opacity: 1 !important;
visibility: visible !important;
/*page-break-after: always;*/
page-break-after: right;
page-break-before: avoid;
}&lt;/p>
&lt;pre>&lt;code>.nav-pills, .nav-tabs, button[data-toggle=&amp;amp;quot;collapse&amp;amp;quot;], .mini, .col-sm-3 img {
display:none !important;
}
a[download=&amp;amp;quot;config.yml&amp;amp;quot;]:after {
content: none !important;
}
.row {
border: 0 !important;
}
&lt;/code>&lt;/pre>
&lt;p>}&lt;/p>
&lt;p>.text-placeholder {
display: inline-block;
background-color: #444;
height: 12px;
border-radius: 100px;
margin: 5px 0;
min-width: 200px;
opacity: .1;
}&amp;lt;/style&amp;gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&amp;lt;a class=anchor-pos id=top&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;nav class=&amp;quot;navbar navbar-default navbar-fixed-top&amp;quot;&amp;gt;&amp;lt;div class=container-fluid&amp;gt;&amp;lt;div class=navbar-header&amp;gt;&amp;lt;button type=button class=&amp;quot;navbar-toggle collapsed&amp;quot; data-toggle=collapse data-target=#navbar aria-expanded=false aria-controls=navbar&amp;gt;&amp;lt;span class=sr-only&amp;gt;Toggle navigation&amp;lt;/span&amp;gt;&amp;lt;span class=icon-bar&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span class=icon-bar&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;span class=icon-bar&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/button&amp;gt;&amp;lt;a class=&amp;quot;navbar-brand anchor&amp;quot; href=#top&amp;gt;Pandas Profiling Report&amp;lt;/a&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=navbar class=&amp;quot;navbar-collapse collapse&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav navbar-nav navbar-right&amp;quot;&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#overview&amp;gt;Overview&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#variables&amp;gt;Variables&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#interactions&amp;gt;Interactions&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#correlations&amp;gt;Correlations&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#missing&amp;gt;Missing values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#sample&amp;gt;Sample&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;&amp;lt;a class=anchor href=#duplicate&amp;gt;Duplicate rows&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/nav&amp;gt;&amp;lt;div class=content&amp;gt;&amp;lt;div class=container&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=overview&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Overview&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-pills&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#overview-dataset_overview aria-controls=overview-dataset_overview role=tab data-toggle=tab&amp;gt;Overview&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#overview-warnings aria-controls=overview-warnings role=tab data-toggle=tab&amp;gt;Warnings &amp;lt;span class=badge&amp;gt;13&amp;lt;/span&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#overview-reproduction aria-controls=overview-reproduction role=tab data-toggle=tab&amp;gt;Reproduction&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content style=&amp;quot;padding-top: 10px;&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=overview-dataset_overview&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Dataset statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Number of variables&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;13&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Number of observations&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;112447&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing cells&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing cells (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Duplicate rows&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;100649&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Duplicate rows (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;89.5%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Total size in memory&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10.4 MiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Average record size in memory&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;97.0 B&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Variable types&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;NUM&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;11&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;CAT&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;BOOL&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=overview-warnings&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed list-warnings&amp;quot;&amp;gt;&amp;lt;p class=h4&amp;gt;Warnings&amp;lt;/p&amp;gt;&amp;lt;tr style=border-top:0&amp;gt;&amp;lt;td&amp;gt; Dataset has 100649 (89.5%) duplicate rows &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-default&amp;quot;&amp;gt;Duplicates&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_4215873076054101109&amp;gt;&amp;lt;code&amp;gt;time_hour&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has a high cardinality: 6517 distinct values &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-primary&amp;quot;&amp;gt;High cardinality&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_382641393491675424&amp;gt;&amp;lt;code&amp;gt;wind_gust&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; is highly correlated with &amp;lt;code&amp;gt;wind_speed&amp;lt;/code&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-default&amp;quot;&amp;gt;High correlation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_2492398362418197901&amp;gt;&amp;lt;code&amp;gt;wind_speed&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; is highly correlated with &amp;lt;code&amp;gt;wind_gust&amp;lt;/code&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-default&amp;quot;&amp;gt;High correlation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_3530489825858011296&amp;gt;&amp;lt;code&amp;gt;temp_min&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; is highly correlated with &amp;lt;code&amp;gt;temp_max&amp;lt;/code&amp;gt; and &amp;lt;abbr title=&amp;quot;temp_max, temp_ave&amp;quot;&amp;gt;1 other fields&amp;lt;/abbr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-default&amp;quot;&amp;gt;High correlation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_-5083171276244515596&amp;gt;&amp;lt;code&amp;gt;temp_max&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; is highly correlated with &amp;lt;code&amp;gt;temp_min&amp;lt;/code&amp;gt; and &amp;lt;abbr title=&amp;quot;temp_min, temp_ave&amp;quot;&amp;gt;1 other fields&amp;lt;/abbr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-default&amp;quot;&amp;gt;High correlation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_667215055855875050&amp;gt;&amp;lt;code&amp;gt;temp_ave&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; is highly correlated with &amp;lt;code&amp;gt;temp_max&amp;lt;/code&amp;gt; and &amp;lt;abbr title=&amp;quot;temp_max, temp_min&amp;quot;&amp;gt;1 other fields&amp;lt;/abbr&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-default&amp;quot;&amp;gt;High correlation&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_3105748594939430141&amp;gt;&amp;lt;code&amp;gt;wind_dir&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has 6818 (6.1%) zeros &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-info&amp;quot;&amp;gt;Zeros&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_2492398362418197901&amp;gt;&amp;lt;code&amp;gt;wind_speed&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has 6818 (6.1%) zeros &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-info&amp;quot;&amp;gt;Zeros&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_382641393491675424&amp;gt;&amp;lt;code&amp;gt;wind_gust&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has 6818 (6.1%) zeros &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-info&amp;quot;&amp;gt;Zeros&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_5788723175470451430&amp;gt;&amp;lt;code&amp;gt;ppt&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has 54199 (48.2%) zeros &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-info&amp;quot;&amp;gt;Zeros&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_-4351960964740665307&amp;gt;&amp;lt;code&amp;gt;new_snow&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has 103414 (92.0%) zeros &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-info&amp;quot;&amp;gt;Zeros&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a class=anchor href=#pp_var_-2793035224093880385&amp;gt;&amp;lt;code&amp;gt;snow_depth&amp;lt;/code&amp;gt;&amp;lt;/a&amp;gt; has 104332 (92.8%) zeros &amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;span class=&amp;quot;label label-info&amp;quot;&amp;gt;Zeros&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=overview-reproduction&amp;gt;&amp;lt;div class=col-sm-12&amp;gt;&amp;lt;p class=h4&amp;gt;Reproduction&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Analysis started&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2021-09-30 16:07:17.967040&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Analysis finished&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2021-09-30 16:07:32.319461&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Duration&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;14.35 seconds&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Software version&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a href=https://github.com/pandas-profiling/pandas-profiling&amp;gt;pandas-profiling v2.9.0&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Download configuration&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt;a download=config.yaml href=&amp;quot;data:text/plain;charset=utf-8,title%3A%20Pandas%20Profiling%20Report%0Adataset%3A%0A%20%20%20%20description%3A%20%27%27%0A%20%20%20%20creator%3A%20%27%27%0A%20%20%20%20author%3A%20%27%27%0A%20%20%20%20copyright_holder%3A%20%27%27%0A%20%20%20%20copyright_year%3A%20%27%27%0A%20%20%20%20url%3A%20%27%27%0Avariables%3A%0A%20%20%20%20descriptions%3A%20%7B%7D%0Ashow_variable_description%3A%20yes%0Apool_size%3A%200%0Aprogress_bar%3A%20yes%0Avars%3A%0A%20%20%20%20num%3A%0A%20%20%20%20%20%20%20%20quantiles%3A%0A%20%20%20%20%20%20%20%20-%200.05%0A%20%20%20%20%20%20%20%20-%200.25%0A%20%20%20%20%20%20%20%20-%200.5%0A%20%20%20%20%20%20%20%20-%200.75%0A%20%20%20%20%20%20%20%20-%200.95%0A%20%20%20%20%20%20%20%20skewness_threshold%3A%2020%0A%20%20%20%20%20%20%20%20low_categorical_threshold%3A%205%0A%20%20%20%20%20%20%20%20chi_squared_threshold%3A%200.999%0A%20%20%20%20cat%3A%0A%20%20%20%20%20%20%20%20length%3A%20yes%0A%20%20%20%20%20%20%20%20unicode%3A%20no%0A%20%20%20%20%20%20%20%20cardinality_threshold%3A%2050%0A%20%20%20%20%20%20%20%20n_obs%3A%205%0A%20%20%20%20%20%20%20%20chi_squared_threshold%3A%200.999%0A%20%20%20%20%20%20%20%20coerce_str_to_date%3A%20no%0A%20%20%20%20%20%20%20%20redact%3A%20no%0A%20%20%20%20bool%3A%0A%20%20%20%20%20%20%20%20n_obs%3A%203%0A%20%20%20%20file%3A%0A%20%20%20%20%20%20%20%20active%3A%20no%0A%20%20%20%20image%3A%0A%20%20%20%20%20%20%20%20active%3A%20no%0A%20%20%20%20%20%20%20%20exif%3A%20yes%0A%20%20%20%20%20%20%20%20hash%3A%20yes%0Asort%3A%20None%0Amissing_diagrams%3A%0A%20%20%20%20bar%3A%20yes%0A%20%20%20%20matrix%3A%20yes%0A%20%20%20%20heatmap%3A%20yes%0A%20%20%20%20dendrogram%3A%20yes%0Acorrelations%3A%0A%20%20%20%20pearson%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20yes%0A%20%20%20%20%20%20%20%20threshold%3A%200.9%0A%20%20%20%20spearman%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20kendall%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20phi_k%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20cramers%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20yes%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20yes%0A%20%20%20%20%20%20%20%20threshold%3A%200.9%0A%20%20%20%20recoded%3A%0A%20%20%20%20%20%20%20%20calculate%3A%20no%0A%20%20%20%20%20%20%20%20warn_high_correlations%3A%20no%0A%20%20%20%20%20%20%20%20threshold%3A%200.0%0Ainteractions%3A%0A%20%20%20%20targets%3A%20%5B%5D%0A%20%20%20%20continuous%3A%20yes%0Acategorical_maximum_correlation_distinct%3A%20100%0Aplot%3A%0A%20%20%20%20image_format%3A%20svg%0A%20%20%20%20dpi%3A%20800%0A%20%20%20%20scatter_threshold%3A%201000%0A%20%20%20%20correlation%3A%0A%20%20%20%20%20%20%20%20cmap%3A%20RdBu%0A%20%20%20%20%20%20%20%20bad%3A%20%27%23000000%27%0A%20%20%20%20missing%3A%0A%20%20%20%20%20%20%20%20cmap%3A%20RdBu%0A%20%20%20%20%20%20%20%20force_labels%3A%20yes%0A%20%20%20%20pie%3A%0A%20%20%20%20%20%20%20%20max_unique%3A%2010%0A%20%20%20%20histogram%3A%0A%20%20%20%20%20%20%20%20x_axis_labels%3A%20yes%0A%20%20%20%20%20%20%20%20bins%3A%2050%0A%20%20%20%20%20%20%20%20max_bins%3A%20250%0An_obs_unique%3A%205%0An_extreme_obs%3A%205%0An_freq_table_max%3A%2010%0Amemory_deep%3A%20no%0Aduplicates%3A%0A%20%20%20%20head%3A%2010%0Asamples%3A%0A%20%20%20%20head%3A%2010%0A%20%20%20%20tail%3A%2010%0Areject_variables%3A%20yes%0Anotebook%3A%0A%20%20%20%20iframe%3A%0A%20%20%20%20%20%20%20%20height%3A%20800px%0A%20%20%20%20%20%20%20%20width%3A%20100%25%0A%20%20%20%20%20%20%20%20attribute%3A%20srcdoc%0Ahtml%3A%0A%20%20%20%20minify_html%3A%20yes%0A%20%20%20%20use_local_assets%3A%20yes%0A%20%20%20%20inline%3A%20yes%0A%20%20%20%20navbar_show%3A%20yes%0A%20%20%20%20file_name%3A%20None%0A%20%20%20%20style%3A%0A%20%20%20%20%20%20%20%20theme%3A%20None%0A%20%20%20%20%20%20%20%20logo%3A%20%27%27%0A%20%20%20%20%20%20%20%20primary_color%3A%20%27%23337ab7%27%0A%20%20%20%20%20%20%20%20full_width%3A%20no%0A&amp;quot;&amp;gt;config.yaml&amp;lt;/a&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=variables&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Variables&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_4215873076054101109&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=time_hour&amp;gt;&amp;lt;a href=#pp_var_4215873076054101109&amp;gt;time_hour&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Categorical&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;HIGH CARDINALITY&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6517&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5.8%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;div class=&amp;quot;col-sm- collapse in&amp;quot; id=minifreqtable&amp;gt;&amp;lt;table class=&amp;quot;mini freq&amp;quot;&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; 2017-08-08T06:00:00Z &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; &amp;amp;nbsp; &amp;lt;/div&amp;gt; 36 &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; 2017-08-25T06:00:00Z &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; &amp;amp;nbsp; &amp;lt;/div&amp;gt; 36 &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; 2017-08-24T06:00:00Z &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; &amp;amp;nbsp; &amp;lt;/div&amp;gt; 36 &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; 2017-07-17T06:00:00Z &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; &amp;amp;nbsp; &amp;lt;/div&amp;gt; 36 &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; 2017-08-23T06:00:00Z &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:0.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; &amp;amp;nbsp; &amp;lt;/div&amp;gt; 36 &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;th width=50%&amp;gt; Other values (6512) &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; 112267&amp;amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-4215873076054101109, #minifreqtable4215873076054101109&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-4215873076054101109 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#4215873076054101109bottom-4215873076054101109frequencies aria-controls=4215873076054101109bottom-4215873076054101109frequencies role=tab data-toggle=tab&amp;gt;Frequencies&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#4215873076054101109bottom-4215873076054101109tbl aria-controls=4215873076054101109bottom-4215873076054101109tbl role=tab data-toggle=tab&amp;gt;Length&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=4215873076054101109bottom-4215873076054101109frequencies&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#4215873076054101109frequencies-4215873076054101109common_values aria-controls=4215873076054101109frequencies-4215873076054101109common_values role=tab data-toggle=tab&amp;gt;Common Values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#4215873076054101109frequencies-4215873076054101109tbl aria-controls=4215873076054101109frequencies-4215873076054101109tbl role=tab data-toggle=tab&amp;gt;Overview&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=4215873076054101109frequencies-4215873076054101109common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-08-08T06:00:00Z&amp;gt;2017-08-08T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-08-25T06:00:00Z&amp;gt;2017-08-25T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-08-24T06:00:00Z&amp;gt;2017-08-24T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-07-17T06:00:00Z&amp;gt;2017-07-17T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-08-23T06:00:00Z&amp;gt;2017-08-23T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-07-13T06:00:00Z&amp;gt;2017-07-13T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-07-20T06:00:00Z&amp;gt;2017-07-20T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-07-10T06:00:00Z&amp;gt;2017-07-10T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-08-01T06:00:00Z&amp;gt;2017-08-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2017-08-14T06:00:00Z&amp;gt;2017-08-14T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (6507)&amp;quot;&amp;gt;Other values (6507)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;112087&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;99.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=4215873076054101109frequencies-4215873076054101109tbl&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.380907&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 52.175 252.381088
L 421.2 252.381088
L 421.2 10.8
L 52.175 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(59.225692 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(107.151017 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(153.110253 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(201.035578 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.960902 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(296.886227 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(344.811552 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(392.736876 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(36.114063 255.959994)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(24.992188 211.883897)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(24.992188 167.8078)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(24.992188 123.731703)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(24.992188 79.655606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(24.992188 35.579509)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.677031 157.573747)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 68.948864 252.381088
L 75.658409 252.381088
L 75.658409 186.707703
L 68.948864 186.707703
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 75.658409 252.381088
L 82.367955 252.381088
L 82.367955 186.266942
L 75.658409 186.266942
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 82.367955 252.381088
L 89.0775 252.381088
L 89.0775 205.219664
L 82.367955 205.219664
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 89.0775 252.381088
L 95.787045 252.381088
L 95.787045 252.381088
L 89.0775 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 95.787045 252.381088
L 102.496591 252.381088
L 102.496591 195.963684
L 95.787045 195.963684
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 102.496591 252.381088
L 109.206136 252.381088
L 109.206136 196.404444
L 102.496591 196.404444
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 109.206136 252.381088
L 115.915682 252.381088
L 115.915682 252.381088
L 109.206136 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 115.915682 252.381088
L 122.625227 252.381088
L 122.625227 211.831078
L 115.915682 211.831078
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 122.625227 252.381088
L 129.334773 252.381088
L 129.334773 229.020756
L 122.625227 229.020756
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 129.334773 252.381088
L 136.044318 252.381088
L 136.044318 252.381088
L 129.334773 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 136.044318 252.381088
L 142.753864 252.381088
L 142.753864 227.698473
L 136.044318 227.698473
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 142.753864 252.381088
L 149.463409 252.381088
L 149.463409 227.698473
L 142.753864 227.698473
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 149.463409 252.381088
L 156.172955 252.381088
L 156.172955 218.001732
L 149.463409 218.001732
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 156.172955 252.381088
L 162.8825 252.381088
L 162.8825 252.381088
L 156.172955 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 162.8825 252.381088
L 169.592045 252.381088
L 169.592045 204.338142
L 162.8825 204.338142
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 169.592045 252.381088
L 176.301591 252.381088
L 176.301591 169.077264
L 169.592045 169.077264
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 176.301591 252.381088
L 183.011136 252.381088
L 183.011136 252.381088
L 176.301591 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 183.011136 252.381088
L 189.720682 252.381088
L 189.720682 156.295196
L 183.011136 156.295196
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 189.720682 252.381088
L 196.430227 252.381088
L 196.430227 135.13867
L 189.720682 135.13867
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 196.430227 252.381088
L 203.139773 252.381088
L 203.139773 252.381088
L 196.430227 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 203.139773 252.381088
L 209.849318 252.381088
L 209.849318 110.456055
L 203.139773 110.456055
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 209.849318 252.381088
L 216.558864 252.381088
L 216.558864 95.470182
L 209.849318 95.470182
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 216.558864 252.381088
L 223.268409 252.381088
L 223.268409 91.503334
L 216.558864 91.503334
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 223.268409 252.381088
L 229.977955 252.381088
L 229.977955 252.381088
L 223.268409 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 229.977955 252.381088
L 236.6875 252.381088
L 236.6875 56.242456
L 229.977955 56.242456
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 236.6875 252.381088
L 243.397045 252.381088
L 243.397045 22.303861
L 236.6875 22.303861
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 243.397045 252.381088
L 250.106591 252.381088
L 250.106591 252.381088
L 243.397045 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 250.106591 252.381088
L 256.816136 252.381088
L 256.816136 38.612017
L 250.106591 38.612017
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 256.816136 252.381088
L 263.525682 252.381088
L 263.525682 32.882125
L 256.816136 32.882125
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 263.525682 252.381088
L 270.235227 252.381088
L 270.235227 252.381088
L 263.525682 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 270.235227 252.381088
L 276.944773 252.381088
L 276.944773 68.143002
L 270.235227 68.143002
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 276.944773 252.381088
L 283.654318 252.381088
L 283.654318 96.351704
L 276.944773 96.351704
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 283.654318 252.381088
L 290.363864 252.381088
L 290.363864 126.764211
L 283.654318 126.764211
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 290.363864 252.381088
L 297.073409 252.381088
L 297.073409 252.381088
L 290.363864 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 297.073409 252.381088
L 303.782955 252.381088
L 303.782955 159.821284
L 297.073409 159.821284
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 303.782955 252.381088
L 310.4925 252.381088
L 310.4925 181.859332
L 303.782955 181.859332
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 310.4925 252.381088
L 317.202045 252.381088
L 317.202045 252.381088
L 310.4925 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 317.202045 252.381088
L 323.911591 252.381088
L 323.911591 209.627274
L 317.202045 209.627274
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 323.911591 252.381088
L 330.621136 252.381088
L 330.621136 225.053908
L 323.911591 225.053908
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 330.621136 252.381088
L 337.330682 252.381088
L 337.330682 252.381088
L 330.621136 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 337.330682 252.381088
L 344.040227 252.381088
L 344.040227 237.395215
L 337.330682 237.395215
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 344.040227 252.381088
L 350.749773 252.381088
L 350.749773 243.125107
L 344.040227 243.125107
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 350.749773 252.381088
L 357.459318 252.381088
L 357.459318 239.158259
L 350.749773 239.158259
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 357.459318 252.381088
L 364.168864 252.381088
L 364.168864 252.381088
L 357.459318 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 364.168864 252.381088
L 370.878409 252.381088
L 370.878409 242.684346
L 364.168864 242.684346
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 370.878409 252.381088
L 377.587955 252.381088
L 377.587955 248.414239
L 370.878409 248.414239
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 377.587955 252.381088
L 384.2975 252.381088
L 384.2975 252.381088
L 377.587955 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 384.2975 252.381088
L 391.007045 252.381088
L 391.007045 246.651195
L 384.2975 246.651195
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 391.007045 252.381088
L 397.716591 252.381088
L 397.716591 245.769673
L 391.007045 245.769673
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p4bce1e168b) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 397.716591 252.381088
L 404.426136 252.381088
L 404.426136 245.328912
L 397.716591 245.328912
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 52.175 252.381088
L 52.175 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 252.381088
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 52.175 252.381088
L 421.2 252.381088
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 52.175 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4bce1e168b&amp;gt;&amp;lt;rect height=241.581088 width=369.025 x=52.175 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt; Frequencies of value counts &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Unique&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Unique&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;149 &amp;lt;span class=&amp;quot;badge pull-right&amp;quot; style=color:#fff;background-color:#337ab7; title=&amp;quot;The number of unique values (all values that occur exactly once in the dataset).&amp;quot;&amp;gt;?&amp;lt;/span&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Unique (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=4215873076054101109bottom-4215873076054101109tbl&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.446745&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 69.05 246.459068
L 421.2 246.459068
L 421.2 10.8
L 69.05 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(112.017956 275.781367)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.045228 275.781367)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.072501 275.781367)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(304.099774 275.781367)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(368.127047 275.781367)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(52.989062 250.037975)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 210.11922)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 170.200466)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 130.281712)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 90.362958)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.184375 50.444203)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.869219 154.612737)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p5615c97392) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 85.056818 246.459068
L 405.193182 246.459068
L 405.193182 22.02186
L 85.056818 22.02186
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 246.459068
L 69.05 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 246.459068
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 246.459068
L 421.2 246.459068
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5615c97392&amp;gt;&amp;lt;rect height=235.659068 width=352.15 x=69.05 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt; Histogram of lengths of the category &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Length&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Max length&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median length&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean length&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Min length&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_-8448085800299455&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=dep_delay_true&amp;gt;&amp;lt;a href=#pp_var_-8448085800299455&amp;gt;dep_delay_true&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Boolean&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;109.8 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;div class=&amp;quot;col-sm- collapse in&amp;quot; id=minifreqtable&amp;gt;&amp;lt;table class=&amp;quot;mini freq&amp;quot;&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; False &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:100.0% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; 85434&amp;amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;th width=50%&amp;gt; True &amp;lt;/th&amp;gt;&amp;lt;td width=50%&amp;gt;&amp;lt;div class=bar style=width:31.6% data-toggle=tooltip data-placement=right data-html=true data-delay=500&amp;gt; 27013&amp;amp;nbsp; &amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom&amp;ndash;8448085800299455, #minifreqtable-8448085800299455&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom&amp;ndash;8448085800299455 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-8448085800299455bottom&amp;ndash;8448085800299455frequency_table aria-controls=-8448085800299455bottom&amp;ndash;8448085800299455frequency_table role=tab data-toggle=tab&amp;gt;Common Values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-8448085800299455bottom&amp;ndash;8448085800299455pie_chart aria-controls=-8448085800299455bottom&amp;ndash;8448085800299455pie_chart role=tab data-toggle=tab&amp;gt;Chart&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-8448085800299455bottom&amp;ndash;8448085800299455frequency_table&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=False&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;85434&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;76.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=True&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;27013&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;24.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:31.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-8448085800299455bottom&amp;ndash;8448085800299455pie_chart&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.483347&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=matplotlib.axis_1 /&amp;gt;&amp;lt;g id=matplotlib.axis_2 /&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 414.792 197.01
C 414.792 185.094103 413.011087 173.244842 409.508356 161.855396
C 406.005625 150.46595 400.82025 139.663703 394.124293 129.807093
C 387.428336 119.950484 379.296686 111.14975 369.999165 103.696918
C 360.701645 96.244085 350.34224 90.222508 339.264696 85.831994
C 328.187152 81.44148 316.515363 78.731133 304.63662 77.790888
C 292.757876 76.850643 280.805035 77.691016 269.174712 80.284121
C 257.54439 82.877226 246.366663 87.194062 236.01243 93.091388
C 225.658196 98.988714 216.243261 106.400572 208.080029 115.081024
C 199.916797 123.761476 193.096568 133.613436 187.84565 144.309999
C 182.594732 155.006562 178.971853 166.428094 177.097227 178.195608
C 175.2226 189.963121 175.117192 201.945005 176.784501 213.743678
C 178.451809 225.542351 181.873187 237.025853 186.935106 247.813141
C 191.997024 258.600428 198.64287 268.570854 206.652122 277.393579
C 214.661374 286.216305 223.944454 293.792654 234.193332 299.871231
C 244.44221 305.949808 255.54226 310.462628 267.125161 313.259946
C 278.708063 316.057264 290.64427 317.107795 302.537716 316.37668
L 295.2 197.01
L 414.792 197.01
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 302.537716 316.37668
C 332.917985 314.509143 361.468057 301.112063 382.319975 278.938972
C 403.171892 256.765882 414.792003 227.447604 414.792 197.009989
L 295.2 197.01
L 302.537716 316.37668
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#ffffff; transform=&amp;quot;translate(228.751455 145.017614)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-37 d=&amp;quot;M 5.8125 54.390625
Q 5.8125 62.0625 9.671875 67.421875
Q 13.53125 72.796875 20.84375 72.796875
Q 27.59375 72.796875 32 67.984375
Q 36.421875 63.1875 36.421875 53.859375
Q 36.421875 44.78125 31.953125 39.875
Q 27.484375 34.96875 20.953125 34.96875
Q 14.453125 34.96875 10.125 39.796875
Q 5.8125 44.625 5.8125 54.390625
z
M 21.09375 66.75
Q 17.828125 66.75 15.65625 63.90625
Q 13.484375 61.078125 13.484375 53.515625
Q 13.484375 46.625 15.671875 43.8125
Q 17.875 41.015625 21.09375 41.015625
Q 24.421875 41.015625 26.59375 43.84375
Q 28.765625 46.6875 28.765625 54.203125
Q 28.765625 61.140625 26.5625 63.9375
Q 24.359375 66.75 21.09375 66.75
z
M 21.140625 -2.640625
L 60.296875 72.796875
L 67.4375 72.796875
L 28.421875 -2.640625
z
M 52.09375 16.796875
Q 52.09375 24.515625 55.953125 29.859375
Q 59.8125 35.203125 67.1875 35.203125
Q 73.921875 35.203125 78.34375 30.390625
Q 82.765625 25.59375 82.765625 16.265625
Q 82.765625 7.171875 78.296875 2.265625
Q 73.828125 -2.640625 67.234375 -2.640625
Q 60.75 -2.640625 56.421875 2.21875
Q 52.09375 7.078125 52.09375 16.796875
z
M 67.4375 29.15625
Q 64.109375 29.15625 61.9375 26.3125
Q 59.765625 23.484375 59.765625 15.921875
Q 59.765625 9.078125 61.953125 6.25
Q 64.15625 3.421875 67.390625 3.421875
Q 70.75 3.421875 72.921875 6.25
Q 75.09375 9.078125 75.09375 16.609375
Q 75.09375 23.53125 72.890625 26.34375
Q 70.703125 29.15625 67.4375 29.15625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=194.628906 xlink:href=#ArialMT-37 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g style=fill:#ffffff; transform=&amp;quot;translate(225.695986 155.740739)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-40 d=&amp;quot;M 23.390625 -21.046875
Q 16.109375 -11.859375 11.078125 0.4375
Q 6.0625 12.75 6.0625 25.921875
Q 6.0625 37.546875 9.8125 48.1875
Q 14.203125 60.546875 23.390625 72.796875
L 29.6875 72.796875
Q 23.78125 62.640625 21.875 58.296875
Q 18.890625 51.5625 17.1875 44.234375
Q 15.09375 35.109375 15.09375 25.875
Q 15.09375 2.390625 29.6875 -21.046875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-41 d=&amp;quot;M 12.359375 -21.046875
L 6.0625 -21.046875
Q 20.65625 2.390625 20.65625 25.875
Q 20.65625 35.0625 18.5625 44.09375
Q 16.890625 51.421875 13.921875 58.15625
Q 12.015625 62.546875 6.0625 72.796875
L 12.359375 72.796875
Q 21.53125 60.546875 25.921875 48.1875
Q 29.6875 37.546875 29.6875 25.921875
Q 29.6875 12.75 24.625 0.4375
Q 19.578125 -11.859375 12.359375 -21.046875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-40 /&amp;gt;&amp;lt;use x=33.300781 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=88.916016 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=144.53125 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=200.146484 xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=255.761719 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=311.376953 xlink:href=#ArialMT-41 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#ffffff; transform=&amp;quot;translate(333.295422 243.332383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=194.628906 xlink:href=#ArialMT-37 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g style=fill:#ffffff; transform=&amp;quot;translate(330.239954 254.055508)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-40 /&amp;gt;&amp;lt;use x=33.300781 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=88.916016 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=144.53125 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=200.146484 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=255.761719 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=311.376953 xlink:href=#ArialMT-41 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=legend_1&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 381.238437 83.810625
L 437.69 83.810625
Q 439.69 83.810625 439.69 81.810625
L 439.69 54.52
Q 439.69 52.52 437.69 52.52
L 381.238437 52.52
Q 379.238437 52.52 379.238437 54.52
L 379.238437 81.810625
Q 379.238437 83.810625 381.238437 83.810625
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:#1f77b4;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 383.238437 63.677812
L 403.238437 63.677812
L 403.238437 56.677812
L 383.238437 56.677812
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(411.238437 63.677812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=116.699219 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=138.916016 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=188.916016 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:#ff7f0e;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 383.238437 77.823125
L 403.238437 77.823125
L 403.238437 70.823125
L 383.238437 70.823125
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(411.238437 77.823125)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-84 d=&amp;quot;M 25.921875 0
L 25.921875 63.140625
L 2.34375 63.140625
L 2.34375 71.578125
L 59.078125 71.578125
L 59.078125 63.140625
L 35.40625 63.140625
L 35.40625 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-84 /&amp;gt;&amp;lt;use x=57.333984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=90.634766 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=146.25 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_3105748594939430141&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=wind_dir&amp;gt;&amp;lt;a href=#pp_var_3105748594939430141&amp;gt;wind_dir&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;ZEROS&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;49&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;181.7354843&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;360&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.531549&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 126.911418
L 205.2 126.911418
L 205.2 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.525878 144.606229)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(65.471046 150.897712)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(114.561955 150.897712)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(163.652864 150.897712)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.636364 126.911418
L 23.243043 126.911418
L 23.243043 16.329115
L 19.636364 16.329115
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 23.243043 126.911418
L 26.849722 126.911418
L 26.849722 44.826197
L 23.243043 44.826197
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.849722 126.911418
L 30.456401 126.911418
L 30.456401 21.940948
L 26.849722 21.940948
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 30.456401 126.911418
L 34.06308 126.911418
L 34.06308 126.911418
L 30.456401 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 34.06308 126.911418
L 37.669759 126.911418
L 37.669759 68.61972
L 34.06308 68.61972
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.669759 126.911418
L 41.276438 126.911418
L 41.276438 87.57993
L 37.669759 87.57993
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 41.276438 126.911418
L 44.883117 126.911418
L 44.883117 99.144198
L 41.276438 99.144198
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 44.883117 126.911418
L 48.489796 126.911418
L 48.489796 126.619473
L 44.883117 126.619473
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 48.489796 126.911418
L 52.096475 126.911418
L 52.096475 94.667707
L 48.489796 94.667707
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 52.096475 126.911418
L 55.703154 126.911418
L 55.703154 96.208529
L 52.096475 96.208529
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 55.703154 126.911418
L 59.309833 126.911418
L 59.309833 107.075373
L 55.703154 107.075373
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 59.309833 126.911418
L 62.916512 126.911418
L 62.916512 126.911418
L 59.309833 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 62.916512 126.911418
L 66.523191 126.911418
L 66.523191 98.998226
L 62.916512 98.998226
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 66.523191 126.911418
L 70.12987 126.911418
L 70.12987 106.15088
L 66.523191 106.15088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 70.12987 126.911418
L 73.736549 126.911418
L 73.736549 103.99373
L 70.12987 103.99373
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 73.736549 126.911418
L 77.343228 126.911418
L 77.343228 126.911418
L 73.736549 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 77.343228 126.911418
L 80.949907 126.911418
L 80.949907 103.40984
L 77.343228 103.40984
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 80.949907 126.911418
L 84.556586 126.911418
L 84.556586 101.8528
L 80.949907 101.8528
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 84.556586 126.911418
L 88.163265 126.911418
L 88.163265 126.911418
L 84.556586 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 88.163265 126.911418
L 91.769944 126.911418
L 91.769944 96.030118
L 88.163265 96.030118
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 91.769944 126.911418
L 95.376623 126.911418
L 95.376623 87.336642
L 91.769944 87.336642
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 95.376623 126.911418
L 98.983302 126.911418
L 98.983302 94.667707
L 95.376623 94.667707
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 98.983302 126.911418
L 102.589981 126.911418
L 102.589981 126.911418
L 98.983302 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 102.589981 126.911418
L 106.19666 126.911418
L 106.19666 94.862337
L 102.589981 94.862337
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 106.19666 126.911418
L 109.80334 126.911418
L 109.80334 105.453456
L 106.19666 105.453456
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 109.80334 126.911418
L 113.410019 126.911418
L 113.410019 86.493246
L 109.80334 86.493246
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 113.410019 126.911418
L 117.016698 126.911418
L 117.016698 126.911418
L 113.410019 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 117.016698 126.911418
L 120.623377 126.911418
L 120.623377 93.970283
L 117.016698 93.970283
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 120.623377 126.911418
L 124.230056 126.911418
L 124.230056 80.102892
L 120.623377 80.102892
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 124.230056 126.911418
L 127.836735 126.911418
L 127.836735 45.199238
L 124.230056 45.199238
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 127.836735 126.911418
L 131.443414 126.911418
L 131.443414 125.224624
L 127.836735 125.224624
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 131.443414 126.911418
L 135.050093 126.911418
L 135.050093 36.37601
L 131.443414 36.37601
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 135.050093 126.911418
L 138.656772 126.911418
L 138.656772 52.40055
L 135.050093 52.40055
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 138.656772 126.911418
L 142.263451 126.911418
L 142.263451 125.678761
L 138.656772 125.678761
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 142.263451 126.911418
L 145.87013 126.911418
L 145.87013 50.63266
L 142.263451 50.63266
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 145.87013 126.911418
L 149.476809 126.911418
L 149.476809 42.263568
L 145.87013 42.263568
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 149.476809 126.911418
L 153.083488 126.911418
L 153.083488 55.72548
L 149.476809 55.72548
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.083488 126.911418
L 156.690167 126.911418
L 156.690167 124.705611
L 153.083488 124.705611
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 156.690167 126.911418
L 160.296846 126.911418
L 160.296846 58.125917
L 156.690167 58.125917
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 160.296846 126.911418
L 163.903525 126.911418
L 163.903525 67.987172
L 160.296846 67.987172
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 163.903525 126.911418
L 167.510204 126.911418
L 167.510204 75.983223
L 163.903525 75.983223
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 167.510204 126.911418
L 171.116883 126.911418
L 171.116883 126.911418
L 167.510204 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.116883 126.911418
L 174.723562 126.911418
L 174.723562 71.149911
L 171.116883 71.149911
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 174.723562 126.911418
L 178.330241 126.911418
L 178.330241 83.638672
L 174.723562 83.638672
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.330241 126.911418
L 181.93692 126.911418
L 181.93692 87.401519
L 178.330241 87.401519
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 181.93692 126.911418
L 185.543599 126.911418
L 185.543599 126.911418
L 181.93692 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 185.543599 126.911418
L 189.150278 126.911418
L 189.150278 88.180039
L 185.543599 88.180039
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 189.150278 126.911418
L 192.756957 126.911418
L 192.756957 91.09949
L 189.150278 91.09949
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#pada06073b0) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 192.756957 126.911418
L 196.363636 126.911418
L 196.363636 81.465303
L 192.756957 81.465303
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 126.911418
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.2 126.911418
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 126.911418
L 205.2 126.911418
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pada06073b0&amp;gt;&amp;lt;rect height=116.111418 width=194.4 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-3105748594939430141, #minifreqtable3105748594939430141&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-3105748594939430141 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#3105748594939430141bottom-3105748594939430141statistics aria-controls=3105748594939430141bottom-3105748594939430141statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3105748594939430141bottom-3105748594939430141histogram aria-controls=3105748594939430141bottom-3105748594939430141histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3105748594939430141bottom-3105748594939430141common_values aria-controls=3105748594939430141bottom-3105748594939430141common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3105748594939430141bottom-3105748594939430141extreme_values aria-controls=3105748594939430141bottom-3105748594939430141extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=3105748594939430141bottom-3105748594939430141statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;70&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;220&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;270&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;340&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;360&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;360&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;200&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;113.4183901&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.6240850022&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-1.272228202&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;181.7354843&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;80&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.2880667132&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20435610&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;12863.73122&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3105748594939430141bottom-3105748594939430141histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.602618&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 57.8 248.403612
L 421.2 248.403612
L 421.2 10.8
L 57.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.180075 267.897126)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(118.097825 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(162.015575 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(207.899414 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.783252 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(299.66709 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(345.550929 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(391.434767 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.739063 251.982518)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 218.792557)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 185.602596)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 152.412635)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 119.222674)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 86.032713)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 52.842752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 19.652791)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.741094 155.585009)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.318182 248.403612
L 81.060297 248.403612
L 81.060297 22.114458
L 74.318182 22.114458
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 81.060297 248.403612
L 87.802412 248.403612
L 87.802412 80.429219
L 81.060297 80.429219
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 87.802412 248.403612
L 94.544527 248.403612
L 94.544527 33.598184
L 87.802412 33.598184
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 94.544527 248.403612
L 101.286642 248.403612
L 101.286642 248.403612
L 94.544527 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 101.286642 248.403612
L 108.028757 248.403612
L 108.028757 129.118892
L 101.286642 129.118892
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 108.028757 248.403612
L 114.770872 248.403612
L 114.770872 167.917957
L 108.028757 167.917957
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 114.770872 248.403612
L 121.512987 248.403612
L 121.512987 191.582399
L 114.770872 191.582399
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 121.512987 248.403612
L 128.255102 248.403612
L 128.255102 247.806193
L 121.512987 247.806193
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 128.255102 248.403612
L 134.997217 248.403612
L 134.997217 182.42197
L 128.255102 182.42197
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 134.997217 248.403612
L 141.739332 248.403612
L 141.739332 185.575016
L 134.997217 185.575016
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 141.739332 248.403612
L 148.481447 248.403612
L 148.481447 207.81229
L 141.739332 207.81229
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 148.481447 248.403612
L 155.223562 248.403612
L 155.223562 248.403612
L 148.481447 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 155.223562 248.403612
L 161.965677 248.403612
L 161.965677 191.283689
L 155.223562 191.283689
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 161.965677 248.403612
L 168.707792 248.403612
L 168.707792 205.920462
L 161.965677 205.920462
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 168.707792 248.403612
L 175.449907 248.403612
L 175.449907 201.506197
L 168.707792 201.506197
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 175.449907 248.403612
L 182.192022 248.403612
L 182.192022 248.403612
L 175.449907 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 182.192022 248.403612
L 188.934137 248.403612
L 188.934137 200.311359
L 182.192022 200.311359
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 188.934137 248.403612
L 195.676252 248.403612
L 195.676252 197.125122
L 188.934137 197.125122
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 195.676252 248.403612
L 202.418367 248.403612
L 202.418367 248.403612
L 195.676252 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 202.418367 248.403612
L 209.160482 248.403612
L 209.160482 185.209926
L 202.418367 185.209926
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 209.160482 248.403612
L 215.902597 248.403612
L 215.902597 167.420107
L 209.160482 167.420107
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 215.902597 248.403612
L 222.644712 248.403612
L 222.644712 182.42197
L 215.902597 182.42197
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 222.644712 248.403612
L 229.386827 248.403612
L 229.386827 248.403612
L 222.644712 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 229.386827 248.403612
L 236.128942 248.403612
L 236.128942 182.820249
L 229.386827 182.820249
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 236.128942 248.403612
L 242.871058 248.403612
L 242.871058 204.493294
L 236.128942 204.493294
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 242.871058 248.403612
L 249.613173 248.403612
L 249.613173 165.694229
L 242.871058 165.694229
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 249.613173 248.403612
L 256.355288 248.403612
L 256.355288 248.403612
L 249.613173 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 256.355288 248.403612
L 263.097403 248.403612
L 263.097403 180.994801
L 256.355288 180.994801
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 263.097403 248.403612
L 269.839518 248.403612
L 269.839518 152.617384
L 263.097403 152.617384
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 269.839518 248.403612
L 276.581633 248.403612
L 276.581633 81.192588
L 269.839518 81.192588
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 276.581633 248.403612
L 283.323748 248.403612
L 283.323748 244.951856
L 276.581633 244.951856
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 283.323748 248.403612
L 290.065863 248.403612
L 290.065863 63.13725
L 283.323748 63.13725
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 290.065863 248.403612
L 296.807978 248.403612
L 296.807978 95.928931
L 290.065863 95.928931
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 296.807978 248.403612
L 303.550093 248.403612
L 303.550093 245.881175
L 296.807978 245.881175
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 303.550093 248.403612
L 310.292208 248.403612
L 310.292208 92.311225
L 303.550093 92.311225
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 310.292208 248.403612
L 317.034323 248.403612
L 317.034323 75.185205
L 310.292208 75.185205
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 317.034323 248.403612
L 323.776438 248.403612
L 323.776438 102.732873
L 317.034323 102.732873
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 323.776438 248.403612
L 330.518553 248.403612
L 330.518553 243.889777
L 323.776438 243.889777
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 330.518553 248.403612
L 337.260668 248.403612
L 337.260668 107.644987
L 330.518553 107.644987
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 337.260668 248.403612
L 344.002783 248.403612
L 344.002783 127.824484
L 337.260668 127.824484
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 344.002783 248.403612
L 350.744898 248.403612
L 350.744898 144.187134
L 344.002783 144.187134
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 350.744898 248.403612
L 357.487013 248.403612
L 357.487013 248.403612
L 350.744898 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 357.487013 248.403612
L 364.229128 248.403612
L 364.229128 134.296526
L 357.487013 134.296526
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 364.229128 248.403612
L 370.971243 248.403612
L 370.971243 159.852796
L 364.229128 159.852796
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 370.971243 248.403612
L 377.713358 248.403612
L 377.713358 167.552867
L 370.971243 167.552867
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 377.713358 248.403612
L 384.455473 248.403612
L 384.455473 248.403612
L 377.713358 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 384.455473 248.403612
L 391.197588 248.403612
L 391.197588 169.145985
L 384.455473 169.145985
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 391.197588 248.403612
L 397.939703 248.403612
L 397.939703 175.120178
L 391.197588 175.120178
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p9b883cb06c) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 397.939703 248.403612
L 404.681818 248.403612
L 404.681818 155.405341
L 397.939703 155.405341
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 248.403612
L 57.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 248.403612
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 248.403612
L 421.2 248.403612
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p9b883cb06c&amp;gt;&amp;lt;rect height=237.603612 width=363.4 x=57.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=49) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3105748594939430141bottom-3105748594939430141common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:11.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=20&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6472&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:10.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=230&amp;gt;230&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5582&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:9.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=260&amp;gt;260&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5219&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:8.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=10&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5061&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:8.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=220&amp;gt;220&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5038&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:8.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=250&amp;gt;250&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:7.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=240&amp;gt;240&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4594&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:7.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=270&amp;gt;270&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4253&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:7.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=280&amp;gt;280&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4241&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:7.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (39)&amp;quot;&amp;gt;Other values (39)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;60467&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;53.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3105748594939430141bottom-3105748594939430141extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#3105748594939430141extreme_values-3105748594939430141firstn aria-controls=3105748594939430141extreme_values-3105748594939430141firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3105748594939430141extreme_values-3105748594939430141lastn aria-controls=3105748594939430141extreme_values-3105748594939430141lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=3105748594939430141extreme_values-3105748594939430141firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=10&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5061&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:74.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=20&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6472&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:94.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=30&amp;gt;30&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3594&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:52.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=40&amp;gt;40&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2425&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:35.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3105748594939430141extreme_values-3105748594939430141lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=360&amp;gt;360&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2802&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=350&amp;gt;350&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2208&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:78.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=345&amp;gt;345&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=340&amp;gt;340&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2383&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:85.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=330&amp;gt;330&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2436&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:86.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_2492398362418197901&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=wind_speed&amp;gt;&amp;lt;a href=#pp_var_2492398362418197901&amp;gt;wind_speed&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;&amp;lt;abbr title=&amp;quot;This variable has a high correlation with 1 fields: wind_gust&amp;quot;&amp;gt;HIGH CORRELATION&amp;lt;/abbr&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;ZEROS&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;166&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;9.102126358&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;39.12652&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.679353&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 130.093398
L 204.108407 130.093398
L 204.108407 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.47626 147.78821)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(62.817917 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(107.732445 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(152.646972 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(197.561499 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.586746 130.093398
L 23.101444 130.093398
L 23.101444 58.535726
L 19.586746 58.535726
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 23.101444 130.093398
L 26.616142 130.093398
L 26.616142 130.093398
L 23.101444 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.616142 130.093398
L 30.130841 130.093398
L 30.130841 130.093398
L 26.616142 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 30.130841 130.093398
L 33.645539 130.093398
L 33.645539 130.093398
L 30.130841 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.645539 130.093398
L 37.160237 130.093398
L 37.160237 56.027324
L 33.645539 56.027324
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.160237 130.093398
L 40.674936 130.093398
L 40.674936 32.307709
L 37.160237 32.307709
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 40.674936 130.093398
L 44.189634 130.093398
L 44.189634 129.694573
L 40.674936 129.694573
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 44.189634 130.093398
L 47.704332 130.093398
L 47.704332 18.474765
L 44.189634 18.474765
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 47.704332 130.093398
L 51.219031 130.093398
L 51.219031 19.7657
L 47.704332 19.7657
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 51.219031 130.093398
L 54.733729 130.093398
L 54.733729 126.409511
L 51.219031 126.409511
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 54.733729 130.093398
L 58.248427 130.093398
L 58.248427 16.480638
L 54.733729 16.480638
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 58.248427 130.093398
L 61.763125 130.093398
L 61.763125 24.383678
L 58.248427 24.383678
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 61.763125 130.093398
L 65.277824 130.093398
L 65.277824 125.758796
L 61.763125 125.758796
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 65.277824 130.093398
L 68.792522 130.093398
L 68.792522 37.691852
L 65.277824 37.691852
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 68.792522 130.093398
L 72.30722 130.093398
L 72.30722 47.389606
L 68.792522 47.389606
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 72.30722 130.093398
L 75.821919 130.093398
L 75.821919 120.17524
L 72.30722 120.17524
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 75.821919 130.093398
L 79.336617 130.093398
L 79.336617 57.192314
L 75.821919 57.192314
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.336617 130.093398
L 82.851315 130.093398
L 82.851315 63.342622
L 79.336617 63.342622
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 82.851315 130.093398
L 86.366014 130.093398
L 86.366014 126.178612
L 82.851315 126.178612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.366014 130.093398
L 89.880712 130.093398
L 89.880712 85.04712
L 86.366014 85.04712
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 89.880712 130.093398
L 93.39541 130.093398
L 93.39541 96.46612
L 89.880712 96.46612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.39541 130.093398
L 96.910109 130.093398
L 96.910109 126.325548
L 93.39541 126.325548
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 96.910109 130.093398
L 100.424807 130.093398
L 100.424807 105.723068
L 96.910109 105.723068
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.424807 130.093398
L 103.939505 130.093398
L 103.939505 109.406955
L 100.424807 109.406955
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 103.939505 130.093398
L 107.454204 130.093398
L 107.454204 129.274757
L 103.939505 129.274757
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 107.454204 130.093398
L 110.968902 130.093398
L 110.968902 117.782288
L 107.454204 117.782288
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 110.968902 130.093398
L 114.4836 130.093398
L 114.4836 124.121513
L 110.968902 124.121513
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 114.4836 130.093398
L 117.998298 130.093398
L 117.998298 124.572815
L 114.4836 124.572815
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 117.998298 130.093398
L 121.512997 130.093398
L 121.512997 130.093398
L 117.998298 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 121.512997 130.093398
L 125.027695 130.093398
L 125.027695 127.207162
L 121.512997 127.207162
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.027695 130.093398
L 128.542393 130.093398
L 128.542393 128.44562
L 125.027695 128.44562
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 128.542393 130.093398
L 132.057092 130.093398
L 132.057092 130.093398
L 128.542393 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 132.057092 130.093398
L 135.57179 130.093398
L 135.57179 129.054353
L 132.057092 129.054353
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 135.57179 130.093398
L 139.086488 130.093398
L 139.086488 129.526646
L 135.57179 129.526646
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 139.086488 130.093398
L 142.601187 130.093398
L 142.601187 130.093398
L 139.086488 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 142.601187 130.093398
L 146.115885 130.093398
L 146.115885 130.093398
L 142.601187 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 146.115885 130.093398
L 149.630583 130.093398
L 149.630583 130.093398
L 146.115885 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 149.630583 130.093398
L 153.145282 130.093398
L 153.145282 130.093398
L 149.630583 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.145282 130.093398
L 156.65998 130.093398
L 156.65998 129.956958
L 153.145282 129.956958
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 156.65998 130.093398
L 160.174678 130.093398
L 160.174678 130.093398
L 156.65998 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 160.174678 130.093398
L 163.689376 130.093398
L 163.689376 130.093398
L 160.174678 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 163.689376 130.093398
L 167.204075 130.093398
L 167.204075 130.093398
L 163.689376 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 167.204075 130.093398
L 170.718773 130.093398
L 170.718773 130.093398
L 167.204075 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 170.718773 130.093398
L 174.233471 130.093398
L 174.233471 130.093398
L 170.718773 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 174.233471 130.093398
L 177.74817 130.093398
L 177.74817 130.093398
L 174.233471 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 177.74817 130.093398
L 181.262868 130.093398
L 181.262868 130.093398
L 177.74817 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 181.262868 130.093398
L 184.777566 130.093398
L 184.777566 130.093398
L 181.262868 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 184.777566 130.093398
L 188.292265 130.093398
L 188.292265 130.093398
L 184.777566 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 188.292265 130.093398
L 191.806963 130.093398
L 191.806963 130.093398
L 188.292265 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p1fd2c944d1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 191.806963 130.093398
L 195.321661 130.093398
L 195.321661 129.99894
L 191.806963 129.99894
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 204.108407 130.093398
L 204.108407 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 204.108407 130.093398
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 204.108407 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1fd2c944d1&amp;gt;&amp;lt;rect height=119.293398 width=193.308407 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-2492398362418197901, #minifreqtable2492398362418197901&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-2492398362418197901 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#2492398362418197901bottom-2492398362418197901statistics aria-controls=2492398362418197901bottom-2492398362418197901statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#2492398362418197901bottom-2492398362418197901histogram aria-controls=2492398362418197901bottom-2492398362418197901histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#2492398362418197901bottom-2492398362418197901common_values aria-controls=2492398362418197901bottom-2492398362418197901common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#2492398362418197901bottom-2492398362418197901extreme_values aria-controls=2492398362418197901bottom-2492398362418197901extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=2492398362418197901bottom-2492398362418197901statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5.7539&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;9.20624&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;12.65858&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;17.2617&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;39.12652&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;39.12652&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6.90468&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;4.782368225&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.525412199&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.116257864&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;9.102126358&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.45234&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.3411067179&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1023506.803&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;22.87104584&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=2492398362418197901bottom-2492398362418197901histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.857361&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 63.425 252.381088
L 421.2 252.381088
L 421.2 10.8
L 63.425 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(79.549393 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(121.113274 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(160.711066 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(202.274946 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.838827 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(285.402707 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(326.966588 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(368.530468 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(410.094349 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.364063 255.959994)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 213.451499)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 170.943005)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 128.43451)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 85.926016)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.120313 43.417522)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.805156 157.573747)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.6875 252.381088
L 86.1925 252.381088
L 86.1925 107.46963
L 79.6875 107.46963
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.1925 252.381088
L 92.6975 252.381088
L 92.6975 252.381088
L 86.1925 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 92.6975 252.381088
L 99.2025 252.381088
L 99.2025 252.381088
L 92.6975 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 99.2025 252.381088
L 105.7075 252.381088
L 105.7075 252.381088
L 99.2025 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 105.7075 252.381088
L 112.2125 252.381088
L 112.2125 102.389865
L 105.7075 102.389865
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 112.2125 252.381088
L 118.7175 252.381088
L 118.7175 54.355266
L 112.2125 54.355266
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 118.7175 252.381088
L 125.2225 252.381088
L 125.2225 251.573426
L 118.7175 251.573426
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.2225 252.381088
L 131.7275 252.381088
L 131.7275 26.342168
L 125.2225 26.342168
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 131.7275 252.381088
L 138.2325 252.381088
L 138.2325 28.956441
L 131.7275 28.956441
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 138.2325 252.381088
L 144.7375 252.381088
L 144.7375 244.920847
L 138.2325 244.920847
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 144.7375 252.381088
L 151.2425 252.381088
L 151.2425 22.303861
L 144.7375 22.303861
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 151.2425 252.381088
L 157.7475 252.381088
L 157.7475 38.308309
L 151.2425 38.308309
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 157.7475 252.381088
L 164.2525 252.381088
L 164.2525 243.603084
L 157.7475 243.603084
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 164.2525 252.381088
L 170.7575 252.381088
L 170.7575 65.258695
L 164.2525 65.258695
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 170.7575 252.381088
L 177.2625 252.381088
L 177.2625 84.897619
L 170.7575 84.897619
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 177.2625 252.381088
L 183.7675 252.381088
L 183.7675 232.295824
L 177.2625 232.295824
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 183.7675 252.381088
L 190.2725 252.381088
L 190.2725 104.749086
L 183.7675 104.749086
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 190.2725 252.381088
L 196.7775 252.381088
L 196.7775 117.204075
L 190.2725 117.204075
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 196.7775 252.381088
L 203.2825 252.381088
L 203.2825 244.453253
L 196.7775 244.453253
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 203.2825 252.381088
L 209.7875 252.381088
L 209.7875 161.157859
L 203.2825 161.157859
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 209.7875 252.381088
L 216.2925 252.381088
L 216.2925 184.28248
L 209.7875 184.28248
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 216.2925 252.381088
L 222.7975 252.381088
L 222.7975 244.750813
L 216.2925 244.750813
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 222.7975 252.381088
L 229.3025 252.381088
L 229.3025 203.028726
L 222.7975 203.028726
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 229.3025 252.381088
L 235.8075 252.381088
L 235.8075 210.488966
L 229.3025 210.488966
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 235.8075 252.381088
L 242.3125 252.381088
L 242.3125 250.723256
L 235.8075 250.723256
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 242.3125 252.381088
L 248.8175 252.381088
L 248.8175 227.449856
L 242.3125 227.449856
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 248.8175 252.381088
L 255.3225 252.381088
L 255.3225 240.287421
L 248.8175 240.287421
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 255.3225 252.381088
L 261.8275 252.381088
L 261.8275 241.201354
L 255.3225 241.201354
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 261.8275 252.381088
L 268.3325 252.381088
L 268.3325 252.381088
L 261.8275 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 268.3325 252.381088
L 274.8375 252.381088
L 274.8375 246.53617
L 268.3325 246.53617
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 274.8375 252.381088
L 281.3425 252.381088
L 281.3425 249.044171
L 274.8375 249.044171
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 281.3425 252.381088
L 287.8475 252.381088
L 287.8475 252.381088
L 281.3425 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 287.8475 252.381088
L 294.3525 252.381088
L 294.3525 250.276917
L 287.8475 250.276917
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 294.3525 252.381088
L 300.8575 252.381088
L 300.8575 251.233358
L 294.3525 251.233358
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 300.8575 252.381088
L 307.3625 252.381088
L 307.3625 252.381088
L 300.8575 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 307.3625 252.381088
L 313.8675 252.381088
L 313.8675 252.381088
L 307.3625 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 313.8675 252.381088
L 320.3725 252.381088
L 320.3725 252.381088
L 313.8675 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 320.3725 252.381088
L 326.8775 252.381088
L 326.8775 252.381088
L 320.3725 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 326.8775 252.381088
L 333.3825 252.381088
L 333.3825 252.104782
L 326.8775 252.104782
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 333.3825 252.381088
L 339.8875 252.381088
L 339.8875 252.381088
L 333.3825 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 339.8875 252.381088
L 346.3925 252.381088
L 346.3925 252.381088
L 339.8875 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 346.3925 252.381088
L 352.8975 252.381088
L 352.8975 252.381088
L 346.3925 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 352.8975 252.381088
L 359.4025 252.381088
L 359.4025 252.381088
L 352.8975 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 359.4025 252.381088
L 365.9075 252.381088
L 365.9075 252.381088
L 359.4025 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 365.9075 252.381088
L 372.4125 252.381088
L 372.4125 252.381088
L 365.9075 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 372.4125 252.381088
L 378.9175 252.381088
L 378.9175 252.381088
L 372.4125 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 378.9175 252.381088
L 385.4225 252.381088
L 385.4225 252.381088
L 378.9175 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 385.4225 252.381088
L 391.9275 252.381088
L 391.9275 252.381088
L 385.4225 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 391.9275 252.381088
L 398.4325 252.381088
L 398.4325 252.381088
L 391.9275 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p50759060af) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 398.4325 252.381088
L 404.9375 252.381088
L 404.9375 252.189799
L 398.4325 252.189799
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 252.381088
L 63.425 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 252.381088
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 252.381088
L 421.2 252.381088
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p50759060af&amp;gt;&amp;lt;rect height=241.581088 width=357.775 x=63.425 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=2492398362418197901bottom-2492398362418197901common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5.7539&amp;gt;5.7539&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10438&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:39.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6.90468&amp;gt;6.90468&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10251&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:38.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=8.05546&amp;gt;8.05546&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10238&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:38.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=9.20624&amp;gt;9.20624&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9764&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:36.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.60312&amp;gt;4.60312&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9253&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=10.35702&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7905&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:29.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=11.5078&amp;gt;11.5078&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7611&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:28.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3.45234&amp;gt;3.45234&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7057&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:26.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:25.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=12.65858&amp;gt;12.65858&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6321&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:23.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (156)&amp;quot;&amp;gt;Other values (156)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;26791&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=2492398362418197901bottom-2492398362418197901extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#2492398362418197901extreme_values-2492398362418197901firstn aria-controls=2492398362418197901extreme_values-2492398362418197901firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#2492398362418197901extreme_values-2492398362418197901lastn aria-controls=2492398362418197901extreme_values-2492398362418197901lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=2492398362418197901extreme_values-2492398362418197901firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:73.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3.45234&amp;gt;3.45234&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7057&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:76.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.48&amp;gt;4.48&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;64&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.60312&amp;gt;4.60312&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9253&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.7&amp;gt;4.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=2492398362418197901extreme_values-2492398362418197901lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=39.12652&amp;gt;39.12652&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=29.92028&amp;gt;29.92028&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;13&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:8.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=26.46794&amp;gt;26.46794&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;54&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=25.31716&amp;gt;25.31716&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;99&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:63.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=24.16638&amp;gt;24.16638&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;157&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_382641393491675424&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=wind_gust&amp;gt;&amp;lt;a href=#pp_var_382641393491675424&amp;gt;wind_gust&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;&amp;lt;abbr title=&amp;quot;This variable has a high correlation with 1 fields: wind_speed&amp;quot;&amp;gt;HIGH CORRELATION&amp;lt;/abbr&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;code&amp;gt;ZEROS&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;170&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10.47451164&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;45.02601669&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.934539&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 130.093398
L 205.2 130.093398
L 205.2 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.525878 147.78821)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(57.203042 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(96.453077 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(135.703112 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(174.953147 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.636364 130.093398
L 23.170909 130.093398
L 23.170909 58.535726
L 19.636364 58.535726
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 23.170909 130.093398
L 26.705455 130.093398
L 26.705455 130.093398
L 23.170909 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.705455 130.093398
L 30.24 130.093398
L 30.24 130.093398
L 26.705455 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 30.24 130.093398
L 33.774545 130.093398
L 33.774545 130.093398
L 30.24 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.774545 130.093398
L 37.309091 130.093398
L 37.309091 56.027324
L 33.774545 56.027324
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.309091 130.093398
L 40.843636 130.093398
L 40.843636 32.307709
L 37.309091 32.307709
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 40.843636 130.093398
L 44.378182 130.093398
L 44.378182 129.694573
L 40.843636 129.694573
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 44.378182 130.093398
L 47.912727 130.093398
L 47.912727 18.474765
L 44.378182 18.474765
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 47.912727 130.093398
L 51.447273 130.093398
L 51.447273 19.7657
L 47.912727 19.7657
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 51.447273 130.093398
L 54.981818 130.093398
L 54.981818 126.409511
L 51.447273 126.409511
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 54.981818 130.093398
L 58.516364 130.093398
L 58.516364 16.480638
L 54.981818 16.480638
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 58.516364 130.093398
L 62.050909 130.093398
L 62.050909 24.383678
L 58.516364 24.383678
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 62.050909 130.093398
L 65.585455 130.093398
L 65.585455 125.758796
L 62.050909 125.758796
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 65.585455 130.093398
L 69.12 130.093398
L 69.12 37.691852
L 65.585455 37.691852
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 69.12 130.093398
L 72.654545 130.093398
L 72.654545 47.389606
L 69.12 47.389606
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 72.654545 130.093398
L 76.189091 130.093398
L 76.189091 120.17524
L 72.654545 120.17524
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 76.189091 130.093398
L 79.723636 130.093398
L 79.723636 57.192314
L 76.189091 57.192314
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.723636 130.093398
L 83.258182 130.093398
L 83.258182 63.982842
L 79.723636 63.982842
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 83.258182 130.093398
L 86.792727 130.093398
L 86.792727 125.538392
L 83.258182 125.538392
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.792727 130.093398
L 90.327273 130.093398
L 90.327273 85.04712
L 86.792727 85.04712
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 90.327273 130.093398
L 93.861818 130.093398
L 93.861818 96.46612
L 90.327273 96.46612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.861818 130.093398
L 97.396364 130.093398
L 97.396364 126.325548
L 93.861818 126.325548
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 97.396364 130.093398
L 100.930909 130.093398
L 100.930909 105.723068
L 97.396364 105.723068
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.930909 130.093398
L 104.465455 130.093398
L 104.465455 109.406955
L 100.930909 109.406955
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 104.465455 130.093398
L 108 130.093398
L 108 129.274757
L 104.465455 129.274757
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 108 130.093398
L 111.534545 130.093398
L 111.534545 117.782288
L 108 117.782288
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 111.534545 130.093398
L 115.069091 130.093398
L 115.069091 124.121513
L 111.534545 124.121513
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 115.069091 130.093398
L 118.603636 130.093398
L 118.603636 124.572815
L 115.069091 124.572815
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 118.603636 130.093398
L 122.138182 130.093398
L 122.138182 130.093398
L 118.603636 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 122.138182 130.093398
L 125.672727 130.093398
L 125.672727 127.207162
L 122.138182 127.207162
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.672727 130.093398
L 129.207273 130.093398
L 129.207273 128.44562
L 125.672727 128.44562
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 129.207273 130.093398
L 132.741818 130.093398
L 132.741818 130.093398
L 129.207273 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 132.741818 130.093398
L 136.276364 130.093398
L 136.276364 129.054353
L 132.741818 129.054353
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 136.276364 130.093398
L 139.810909 130.093398
L 139.810909 129.526646
L 136.276364 129.526646
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 139.810909 130.093398
L 143.345455 130.093398
L 143.345455 130.093398
L 139.810909 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 143.345455 130.093398
L 146.88 130.093398
L 146.88 130.093398
L 143.345455 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 146.88 130.093398
L 150.414545 130.093398
L 150.414545 130.093398
L 146.88 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 150.414545 130.093398
L 153.949091 130.093398
L 153.949091 130.093398
L 150.414545 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.949091 130.093398
L 157.483636 130.093398
L 157.483636 129.956958
L 153.949091 129.956958
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 157.483636 130.093398
L 161.018182 130.093398
L 161.018182 130.093398
L 157.483636 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 161.018182 130.093398
L 164.552727 130.093398
L 164.552727 130.093398
L 161.018182 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 164.552727 130.093398
L 168.087273 130.093398
L 168.087273 130.093398
L 164.552727 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 168.087273 130.093398
L 171.621818 130.093398
L 171.621818 130.093398
L 168.087273 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.621818 130.093398
L 175.156364 130.093398
L 175.156364 130.093398
L 171.621818 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 175.156364 130.093398
L 178.690909 130.093398
L 178.690909 130.093398
L 175.156364 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.690909 130.093398
L 182.225455 130.093398
L 182.225455 130.093398
L 178.690909 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 182.225455 130.093398
L 185.76 130.093398
L 185.76 130.093398
L 182.225455 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 185.76 130.093398
L 189.294545 130.093398
L 189.294545 130.093398
L 185.76 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 189.294545 130.093398
L 192.829091 130.093398
L 192.829091 130.093398
L 189.294545 130.093398
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p79b1364257) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 192.829091 130.093398
L 196.363636 130.093398
L 196.363636 129.99894
L 192.829091 129.99894
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.2 130.093398
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 205.2 130.093398
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p79b1364257&amp;gt;&amp;lt;rect height=119.293398 width=194.4 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-382641393491675424, #minifreqtable382641393491675424&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-382641393491675424 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#382641393491675424bottom-382641393491675424statistics aria-controls=382641393491675424bottom-382641393491675424statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#382641393491675424bottom-382641393491675424histogram aria-controls=382641393491675424bottom-382641393491675424histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#382641393491675424bottom-382641393491675424common_values aria-controls=382641393491675424bottom-382641393491675424common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#382641393491675424bottom-382641393491675424extreme_values aria-controls=382641393491675424bottom-382641393491675424extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=382641393491675424bottom-382641393491675424statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6.621473042&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10.59435687&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;14.56724069&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;19.86441913&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;45.02601669&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;45.02601669&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;7.94576765&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5.503436662&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.5254122434&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1162985678&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10.47451164&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.972883825&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.3411225252&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1177827.411&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;30.28781509&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=382641393491675424bottom-382641393491675424histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.001240&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 63.425 252.381088
L 421.2 252.381088
L 421.2 10.8
L 63.425 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(79.549393 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(149.81932 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(222.055334 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.291349 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(366.527363 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.364063 255.959994)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 213.451499)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 170.943005)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 128.43451)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.68125 85.926016)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.120313 43.417522)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.805156 157.573747)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.6875 252.381088
L 86.1925 252.381088
L 86.1925 107.46963
L 79.6875 107.46963
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.1925 252.381088
L 92.6975 252.381088
L 92.6975 252.381088
L 86.1925 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 92.6975 252.381088
L 99.2025 252.381088
L 99.2025 252.381088
L 92.6975 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 99.2025 252.381088
L 105.7075 252.381088
L 105.7075 252.381088
L 99.2025 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 105.7075 252.381088
L 112.2125 252.381088
L 112.2125 102.389865
L 105.7075 102.389865
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 112.2125 252.381088
L 118.7175 252.381088
L 118.7175 54.355266
L 112.2125 54.355266
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 118.7175 252.381088
L 125.2225 252.381088
L 125.2225 251.573426
L 118.7175 251.573426
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.2225 252.381088
L 131.7275 252.381088
L 131.7275 26.342168
L 125.2225 26.342168
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 131.7275 252.381088
L 138.2325 252.381088
L 138.2325 28.956441
L 131.7275 28.956441
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 138.2325 252.381088
L 144.7375 252.381088
L 144.7375 244.920847
L 138.2325 244.920847
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 144.7375 252.381088
L 151.2425 252.381088
L 151.2425 22.303861
L 144.7375 22.303861
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 151.2425 252.381088
L 157.7475 252.381088
L 157.7475 38.308309
L 151.2425 38.308309
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 157.7475 252.381088
L 164.2525 252.381088
L 164.2525 243.603084
L 157.7475 243.603084
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 164.2525 252.381088
L 170.7575 252.381088
L 170.7575 65.258695
L 164.2525 65.258695
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 170.7575 252.381088
L 177.2625 252.381088
L 177.2625 84.897619
L 170.7575 84.897619
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 177.2625 252.381088
L 183.7675 252.381088
L 183.7675 232.295824
L 177.2625 232.295824
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 183.7675 252.381088
L 190.2725 252.381088
L 190.2725 104.749086
L 183.7675 104.749086
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 190.2725 252.381088
L 196.7775 252.381088
L 196.7775 118.500584
L 190.2725 118.500584
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 196.7775 252.381088
L 203.2825 252.381088
L 203.2825 243.156744
L 196.7775 243.156744
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 203.2825 252.381088
L 209.7875 252.381088
L 209.7875 161.157859
L 203.2825 161.157859
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 209.7875 252.381088
L 216.2925 252.381088
L 216.2925 184.28248
L 209.7875 184.28248
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 216.2925 252.381088
L 222.7975 252.381088
L 222.7975 244.750813
L 216.2925 244.750813
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 222.7975 252.381088
L 229.3025 252.381088
L 229.3025 203.028726
L 222.7975 203.028726
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 229.3025 252.381088
L 235.8075 252.381088
L 235.8075 210.488966
L 229.3025 210.488966
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 235.8075 252.381088
L 242.3125 252.381088
L 242.3125 250.723256
L 235.8075 250.723256
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 242.3125 252.381088
L 248.8175 252.381088
L 248.8175 227.449856
L 242.3125 227.449856
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 248.8175 252.381088
L 255.3225 252.381088
L 255.3225 240.287421
L 248.8175 240.287421
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 255.3225 252.381088
L 261.8275 252.381088
L 261.8275 241.201354
L 255.3225 241.201354
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 261.8275 252.381088
L 268.3325 252.381088
L 268.3325 252.381088
L 261.8275 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 268.3325 252.381088
L 274.8375 252.381088
L 274.8375 246.53617
L 268.3325 246.53617
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 274.8375 252.381088
L 281.3425 252.381088
L 281.3425 249.044171
L 274.8375 249.044171
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 281.3425 252.381088
L 287.8475 252.381088
L 287.8475 252.381088
L 281.3425 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 287.8475 252.381088
L 294.3525 252.381088
L 294.3525 250.276917
L 287.8475 250.276917
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 294.3525 252.381088
L 300.8575 252.381088
L 300.8575 251.233358
L 294.3525 251.233358
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 300.8575 252.381088
L 307.3625 252.381088
L 307.3625 252.381088
L 300.8575 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 307.3625 252.381088
L 313.8675 252.381088
L 313.8675 252.381088
L 307.3625 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 313.8675 252.381088
L 320.3725 252.381088
L 320.3725 252.381088
L 313.8675 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 320.3725 252.381088
L 326.8775 252.381088
L 326.8775 252.381088
L 320.3725 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 326.8775 252.381088
L 333.3825 252.381088
L 333.3825 252.104782
L 326.8775 252.104782
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 333.3825 252.381088
L 339.8875 252.381088
L 339.8875 252.381088
L 333.3825 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 339.8875 252.381088
L 346.3925 252.381088
L 346.3925 252.381088
L 339.8875 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 346.3925 252.381088
L 352.8975 252.381088
L 352.8975 252.381088
L 346.3925 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 352.8975 252.381088
L 359.4025 252.381088
L 359.4025 252.381088
L 352.8975 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 359.4025 252.381088
L 365.9075 252.381088
L 365.9075 252.381088
L 359.4025 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 365.9075 252.381088
L 372.4125 252.381088
L 372.4125 252.381088
L 365.9075 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 372.4125 252.381088
L 378.9175 252.381088
L 378.9175 252.381088
L 372.4125 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 378.9175 252.381088
L 385.4225 252.381088
L 385.4225 252.381088
L 378.9175 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 385.4225 252.381088
L 391.9275 252.381088
L 391.9275 252.381088
L 385.4225 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 391.9275 252.381088
L 398.4325 252.381088
L 398.4325 252.381088
L 391.9275 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#pf4ef513070) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 398.4325 252.381088
L 404.9375 252.381088
L 404.9375 252.189799
L 398.4325 252.189799
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 252.381088
L 63.425 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 252.381088
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 252.381088
L 421.2 252.381088
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pf4ef513070&amp;gt;&amp;lt;rect height=241.581088 width=357.775 x=63.425 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=382641393491675424bottom-382641393491675424common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6.621473042&amp;gt;6.621473042&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10438&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:39.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=7.94576765&amp;gt;7.94576765&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10251&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:38.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=9.270062259&amp;gt;9.270062259&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10238&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:38.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=10.59435687&amp;gt;10.59435687&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9764&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:36.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5.297178434&amp;gt;5.297178434&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9253&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=11.91865148&amp;gt;11.91865148&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7905&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:29.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=13.24294608&amp;gt;13.24294608&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7611&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:28.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3.972883825&amp;gt;3.972883825&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7057&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:26.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:25.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=14.56724069&amp;gt;14.56724069&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6321&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:23.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (160)&amp;quot;&amp;gt;Other values (160)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;26791&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=382641393491675424bottom-382641393491675424extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#382641393491675424extreme_values-382641393491675424firstn aria-controls=382641393491675424extreme_values-382641393491675424firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#382641393491675424extreme_values-382641393491675424lastn aria-controls=382641393491675424extreme_values-382641393491675424lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=382641393491675424extreme_values-382641393491675424firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6818&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:73.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3.972883825&amp;gt;3.972883825&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7057&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:76.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5.16&amp;gt;5.16&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;64&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5.297178434&amp;gt;5.297178434&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9253&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5.41&amp;gt;5.41&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=382641393491675424extreme_values-382641393491675424lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=45.02601669&amp;gt;45.02601669&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=34.43165982&amp;gt;34.43165982&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;13&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:8.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=30.45877599&amp;gt;30.45877599&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;54&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=29.13448138&amp;gt;29.13448138&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;99&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:63.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=27.81018678&amp;gt;27.81018678&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;157&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_411295583924033732&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=visib&amp;gt;&amp;lt;a href=#pp_var_411295583924033732&amp;gt;visib&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;9.346308483&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.13&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.062361&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 11.294126 125.320428
L 205.119305 125.320428
L 205.119305 10.8
L 11.294126 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(17.673044 143.015239)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(53.378152 143.015239)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.08326 143.015239)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(124.788368 143.015239)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(160.493476 143.015239)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(194.625713 146.16098)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 20.104362 125.320428
L 28.914597 125.320428
L 28.914597 124.87429
L 20.104362 124.87429
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 28.914597 125.320428
L 37.724832 125.320428
L 37.724832 124.638765
L 28.914597 124.638765
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.724832 125.320428
L 46.535068 125.320428
L 46.535068 124.748601
L 37.724832 124.748601
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 46.535068 125.320428
L 55.345303 125.320428
L 55.345303 124.363609
L 46.535068 124.363609
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 55.345303 125.320428
L 64.155539 125.320428
L 64.155539 124.662544
L 55.345303 124.662544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 64.155539 125.320428
L 72.965774 125.320428
L 72.965774 123.884634
L 64.155539 123.884634
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 72.965774 125.320428
L 81.776009 125.320428
L 81.776009 125.281928
L 72.965774 125.281928
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 81.776009 125.320428
L 90.586245 125.320428
L 90.586245 122.891582
L 81.776009 122.891582
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 90.586245 125.320428
L 99.39648 125.320428
L 99.39648 125.320428
L 90.586245 125.320428
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 99.39648 125.320428
L 108.206715 125.320428
L 108.206715 123.285632
L 99.39648 123.285632
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 108.206715 125.320428
L 117.016951 125.320428
L 117.016951 125.320428
L 108.206715 125.320428
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 117.016951 125.320428
L 125.827186 125.320428
L 125.827186 123.322999
L 117.016951 123.322999
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.827186 125.320428
L 134.637422 125.320428
L 134.637422 125.320428
L 125.827186 125.320428
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 134.637422 125.320428
L 143.447657 125.320428
L 143.447657 123.861988
L 134.637422 123.861988
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 143.447657 125.320428
L 152.257892 125.320428
L 152.257892 125.320428
L 143.447657 125.320428
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 152.257892 125.320428
L 161.068128 125.320428
L 161.068128 123.078416
L 152.257892 123.078416
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 161.068128 125.320428
L 169.878363 125.320428
L 169.878363 125.320428
L 161.068128 125.320428
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 169.878363 125.320428
L 178.688599 125.320428
L 178.688599 122.010629
L 169.878363 122.010629
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.688599 125.320428
L 187.498834 125.320428
L 187.498834 125.320428
L 178.688599 125.320428
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p3ab6649bee) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 187.498834 125.320428
L 196.309069 125.320428
L 196.309069 16.253354
L 187.498834 16.253354
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 11.294126 125.320428
L 11.294126 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.119305 125.320428
L 205.119305 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 11.294126 125.320428
L 205.119305 125.320428
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 11.294126 10.8
L 205.119305 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p3ab6649bee&amp;gt;&amp;lt;rect height=114.520428 width=193.825178 x=11.294126 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-411295583924033732, #minifreqtable411295583924033732&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-411295583924033732 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#411295583924033732bottom-411295583924033732statistics aria-controls=411295583924033732bottom-411295583924033732statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#411295583924033732bottom-411295583924033732histogram aria-controls=411295583924033732bottom-411295583924033732histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#411295583924033732bottom-411295583924033732common_values aria-controls=411295583924033732bottom-411295583924033732common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#411295583924033732bottom-411295583924033732extreme_values aria-controls=411295583924033732bottom-411295583924033732extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=411295583924033732bottom-411295583924033732statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.13&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;4&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;9.87&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1.883828147&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.2015585244&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;8.406241873&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;9.346308483&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-3.047656759&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1050964.35&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.548808486&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=411295583924033732bottom-411295583924033732histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.118749&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 69.05 252.381088
L 421.2 252.381088
L 421.2 11.855395
L 69.05 11.855395
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(80.702123 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(145.572713 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(210.443304 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(275.313894 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(340.184485 271.874602)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(403.088987 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(52.989062 255.959994)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 208.395685)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 160.831377)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 113.267068)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 65.70276)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.184375 18.138451)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.869219 158.101444)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 85.056818 252.381088
L 101.063636 252.381088
L 101.063636 251.444071
L 85.056818 251.444071
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 101.063636 252.381088
L 117.070455 252.381088
L 117.070455 250.949402
L 101.063636 250.949402
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 117.070455 252.381088
L 133.077273 252.381088
L 133.077273 251.180089
L 117.070455 251.180089
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 133.077273 252.381088
L 149.084091 252.381088
L 149.084091 250.371496
L 133.077273 250.371496
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 149.084091 252.381088
L 165.090909 252.381088
L 165.090909 250.999345
L 149.084091 250.999345
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 165.090909 252.381088
L 181.097727 252.381088
L 181.097727 249.365511
L 165.090909 249.365511
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 181.097727 252.381088
L 197.104545 252.381088
L 197.104545 252.300228
L 181.097727 252.300228
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 197.104545 252.381088
L 213.111364 252.381088
L 213.111364 247.279816
L 197.104545 247.279816
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 213.111364 252.381088
L 229.118182 252.381088
L 229.118182 252.381088
L 213.111364 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 229.118182 252.381088
L 245.125 252.381088
L 245.125 248.107435
L 229.118182 248.107435
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 245.125 252.381088
L 261.131818 252.381088
L 261.131818 252.381088
L 245.125 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 261.131818 252.381088
L 277.138636 252.381088
L 277.138636 248.185916
L 261.131818 248.185916
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 277.138636 252.381088
L 293.145455 252.381088
L 293.145455 252.381088
L 277.138636 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 293.145455 252.381088
L 309.152273 252.381088
L 309.152273 249.317946
L 293.145455 249.317946
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 309.152273 252.381088
L 325.159091 252.381088
L 325.159091 252.381088
L 309.152273 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 325.159091 252.381088
L 341.165909 252.381088
L 341.165909 247.672221
L 325.159091 247.672221
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 341.165909 252.381088
L 357.172727 252.381088
L 357.172727 252.381088
L 341.165909 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 357.172727 252.381088
L 373.179545 252.381088
L 373.179545 245.429564
L 357.172727 245.429564
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 373.179545 252.381088
L 389.186364 252.381088
L 389.186364 252.381088
L 373.179545 252.381088
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p3f05296dc5) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 389.186364 252.381088
L 405.193182 252.381088
L 405.193182 23.308999
L 389.186364 23.308999
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 252.381088
L 69.05 11.855395
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 252.381088
L 421.2 11.855395
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 252.381088
L 421.2 252.381088
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 11.855395
L 421.2 11.855395
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p3f05296dc5&amp;gt;&amp;lt;rect height=240.525693 width=352.15 x=69.05 y=11.855395 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=20) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=411295583924033732bottom-411295583924033732common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=10&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;96321&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;85.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=9&amp;gt;9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2923&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4&amp;gt;4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2145&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=8&amp;gt;8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1980&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5&amp;gt;5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1797&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1764&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=7&amp;gt;7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1288&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1268&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;655&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.5&amp;gt;2.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;581&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (10)&amp;quot;&amp;gt;Other values (10)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1725&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=411295583924033732bottom-411295583924033732extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#411295583924033732extreme_values-411295583924033732firstn aria-controls=411295583924033732extreme_values-411295583924033732firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#411295583924033732extreme_values-411295583924033732lastn aria-controls=411295583924033732extreme_values-411295583924033732lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=411295583924033732extreme_values-411295583924033732firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.13&amp;gt;0.13&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.24&amp;gt;0.24&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.25&amp;gt;0.25&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;68&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:21.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.5&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;313&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.75&amp;gt;0.75&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;259&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:82.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=411295583924033732extreme_values-411295583924033732lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=10&amp;gt;10&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;96321&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;85.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=9&amp;gt;9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2923&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=8&amp;gt;8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1980&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=7&amp;gt;7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1288&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1764&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_-5083171276244515596&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=temp_max&amp;gt;&amp;lt;a href=#pp_var_-5083171276244515596&amp;gt;temp_max&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;&amp;lt;abbr title=&amp;quot;This variable has a high correlation with 2 fields: temp_min, temp_ave&amp;quot;&amp;gt;HIGH CORRELATION&amp;lt;/abbr&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;74&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;65.2802209&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;99&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.183500&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 126.911418
L 203.988448 126.911418
L 203.988448 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(17.897937 147.751971)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(62.36018 147.751971)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(106.822424 147.751971)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(151.284667 147.751971)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(194.17404 150.897712)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.581293 126.911418
L 23.09381 126.911418
L 23.09381 121.136604
L 19.581293 121.136604
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 23.09381 126.911418
L 26.606328 126.911418
L 26.606328 116.150895
L 23.09381 116.150895
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.606328 126.911418
L 30.118845 126.911418
L 30.118845 126.911418
L 26.606328 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 30.118845 126.911418
L 33.631362 126.911418
L 33.631362 107.542477
L 30.118845 107.542477
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.631362 126.911418
L 37.143879 126.911418
L 37.143879 116.294369
L 33.631362 116.294369
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.143879 126.911418
L 40.656396 126.911418
L 40.656396 126.911418
L 37.143879 126.911418
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 40.656396 126.911418
L 44.168914 126.911418
L 44.168914 116.401974
L 40.656396 116.401974
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 44.168914 126.911418
L 47.681431 126.911418
L 47.681431 106.376754
L 44.168914 106.376754
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 47.681431 126.911418
L 51.193948 126.911418
L 51.193948 100.010112
L 47.681431 100.010112
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 51.193948 126.911418
L 54.706465 126.911418
L 54.706465 117.316619
L 51.193948 117.316619
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 54.706465 126.911418
L 58.218983 126.911418
L 58.218983 117.370421
L 54.706465 117.370421
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 58.218983 126.911418
L 61.7315 126.911418
L 61.7315 100.476401
L 58.218983 100.476401
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 61.7315 126.911418
L 65.244017 126.911418
L 65.244017 91.93972
L 61.7315 91.93972
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 65.244017 126.911418
L 68.756534 126.911418
L 68.756534 52.502405
L 65.244017 52.502405
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 68.756534 126.911418
L 72.269052 126.911418
L 72.269052 119.468723
L 68.756534 119.468723
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 72.269052 126.911418
L 75.781569 126.911418
L 75.781569 75.781002
L 72.269052 75.781002
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 75.781569 126.911418
L 79.294086 126.911418
L 79.294086 95.221679
L 75.781569 95.221679
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.294086 126.911418
L 82.806603 126.911418
L 82.806603 78.489067
L 79.294086 78.489067
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 82.806603 126.911418
L 86.31912 126.911418
L 86.31912 16.329115
L 82.806603 16.329115
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.31912 126.911418
L 89.831638 126.911418
L 89.831638 102.789913
L 86.31912 102.789913
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 89.831638 126.911418
L 93.344155 126.911418
L 93.344155 60.070639
L 89.831638 60.070639
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.344155 126.911418
L 96.856672 126.911418
L 96.856672 104.493663
L 93.344155 104.493663
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 96.856672 126.911418
L 100.369189 126.911418
L 100.369189 85.824156
L 96.856672 85.824156
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.369189 126.911418
L 103.881707 126.911418
L 103.881707 100.117717
L 100.369189 100.117717
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 103.881707 126.911418
L 107.394224 126.911418
L 107.394224 57.649521
L 103.881707 57.649521
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 107.394224 126.911418
L 110.906741 126.911418
L 110.906741 52.305129
L 107.394224 52.305129
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 110.906741 126.911418
L 114.419258 126.911418
L 114.419258 74.956028
L 110.906741 74.956028
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 114.419258 126.911418
L 117.931776 126.911418
L 117.931776 91.25822
L 114.419258 91.25822
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 117.931776 126.911418
L 121.444293 126.911418
L 121.444293 86.487722
L 117.931776 86.487722
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 121.444293 126.911418
L 124.95681 126.911418
L 124.95681 51.910576
L 121.444293 51.910576
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 124.95681 126.911418
L 128.469327 126.911418
L 128.469327 107.578346
L 124.95681 107.578346
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 128.469327 126.911418
L 131.981844 126.911418
L 131.981844 45.454263
L 128.469327 45.454263
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 131.981844 126.911418
L 135.494362 126.911418
L 135.494362 79.834132
L 131.981844 79.834132
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 135.494362 126.911418
L 139.006879 126.911418
L 139.006879 88.65776
L 135.494362 88.65776
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 139.006879 126.911418
L 142.519396 126.911418
L 142.519396 26.085322
L 139.006879 26.085322
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 142.519396 126.911418
L 146.031913 126.911418
L 146.031913 80.049342
L 142.519396 80.049342
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 146.031913 126.911418
L 149.544431 126.911418
L 149.544431 77.359212
L 146.031913 77.359212
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 149.544431 126.911418
L 153.056948 126.911418
L 153.056948 63.173256
L 149.544431 63.173256
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.056948 126.911418
L 156.569465 126.911418
L 156.569465 63.783019
L 153.056948 63.783019
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 156.569465 126.911418
L 160.081982 126.911418
L 160.081982 42.297843
L 156.569465 42.297843
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 160.081982 126.911418
L 163.5945 126.911418
L 163.5945 67.746478
L 160.081982 67.746478
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 163.5945 126.911418
L 167.107017 126.911418
L 167.107017 30.497136
L 163.5945 30.497136
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 167.107017 126.911418
L 170.619534 126.911418
L 170.619534 68.822531
L 167.107017 68.822531
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 170.619534 126.911418
L 174.132051 126.911418
L 174.132051 78.883619
L 170.619534 78.883619
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 174.132051 126.911418
L 177.644568 126.911418
L 177.644568 79.224369
L 174.132051 79.224369
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 177.644568 126.911418
L 181.157086 126.911418
L 181.157086 110.949976
L 177.644568 110.949976
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 181.157086 126.911418
L 184.669603 126.911418
L 184.669603 91.437562
L 181.157086 91.437562
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 184.669603 126.911418
L 188.18212 126.911418
L 188.18212 120.77792
L 184.669603 120.77792
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 188.18212 126.911418
L 191.694637 126.911418
L 191.694637 120.759986
L 188.18212 120.759986
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p70b0c0ea35) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 191.694637 126.911418
L 195.207155 126.911418
L 195.207155 115.056909
L 191.694637 115.056909
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 126.911418
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 203.988448 126.911418
L 203.988448 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 126.911418
L 203.988448 126.911418
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 203.988448 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p70b0c0ea35&amp;gt;&amp;lt;rect height=116.111418 width=193.188448 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom&amp;ndash;5083171276244515596, #minifreqtable-5083171276244515596&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom&amp;ndash;5083171276244515596 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-5083171276244515596bottom&amp;ndash;5083171276244515596statistics aria-controls=-5083171276244515596bottom&amp;ndash;5083171276244515596statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-5083171276244515596bottom&amp;ndash;5083171276244515596histogram aria-controls=-5083171276244515596bottom&amp;ndash;5083171276244515596histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-5083171276244515596bottom&amp;ndash;5083171276244515596common_values aria-controls=-5083171276244515596bottom&amp;ndash;5083171276244515596common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-5083171276244515596bottom&amp;ndash;5083171276244515596extreme_values aria-controls=-5083171276244515596bottom&amp;ndash;5083171276244515596extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-5083171276244515596bottom&amp;ndash;5083171276244515596statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;50&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;67&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;81&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;91&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;99&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;79&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;31&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;17.80699714&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.2727778321&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.8393453178&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;65.2802209&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;15&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.3038400828&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;7340565&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;317.0891471&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-5083171276244515596bottom&amp;ndash;5083171276244515596histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.256418&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 57.8 248.403612
L 421.2 248.403612
L 421.2 10.8
L 57.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(72.213987 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(114.032169 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(155.85035 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(197.668532 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(239.486714 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.304896 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.123078 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(364.941259 271.829303)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(404.793353 275.76148)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.739063 251.982518)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 215.283012)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 178.583506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 141.884)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 105.184494)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 68.484988)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 31.785482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.741094 155.585009)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.318182 248.403612
L 80.925455 248.403612
L 80.925455 236.586371
L 74.318182 236.586371
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 80.925455 248.403612
L 87.532727 248.403612
L 87.532727 226.383908
L 80.925455 226.383908
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 87.532727 248.403612
L 94.14 248.403612
L 94.14 248.403612
L 87.532727 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 94.14 248.403612
L 100.747273 248.403612
L 100.747273 208.768145
L 94.14 208.768145
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.747273 248.403612
L 107.354545 248.403612
L 107.354545 226.677504
L 100.747273 226.677504
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 107.354545 248.403612
L 113.961818 248.403612
L 113.961818 248.403612
L 107.354545 248.403612
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 113.961818 248.403612
L 120.569091 248.403612
L 120.569091 226.897701
L 113.961818 226.897701
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 120.569091 248.403612
L 127.176364 248.403612
L 127.176364 206.382678
L 120.569091 206.382678
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 127.176364 248.403612
L 133.783636 248.403612
L 133.783636 193.354353
L 127.176364 193.354353
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 133.783636 248.403612
L 140.390909 248.403612
L 140.390909 228.769376
L 133.783636 228.769376
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 140.390909 248.403612
L 146.998182 248.403612
L 146.998182 228.879475
L 140.390909 228.879475
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 146.998182 248.403612
L 153.605455 248.403612
L 153.605455 194.30854
L 146.998182 194.30854
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.605455 248.403612
L 160.212727 248.403612
L 160.212727 176.839575
L 153.605455 176.839575
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 160.212727 248.403612
L 166.82 248.403612
L 166.82 96.137361
L 160.212727 96.137361
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 166.82 248.403612
L 173.427273 248.403612
L 173.427273 233.173317
L 166.82 233.173317
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 173.427273 248.403612
L 180.034545 248.403612
L 180.034545 143.77332
L 173.427273 143.77332
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 180.034545 248.403612
L 186.641818 248.403612
L 186.641818 183.555585
L 180.034545 183.555585
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 186.641818 248.403612
L 193.249091 248.403612
L 193.249091 149.314946
L 186.641818 149.314946
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 193.249091 248.403612
L 199.856364 248.403612
L 199.856364 22.114458
L 193.249091 22.114458
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 199.856364 248.403612
L 206.463636 248.403612
L 206.463636 199.042776
L 199.856364 199.042776
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 206.463636 248.403612
L 213.070909 248.403612
L 213.070909 111.624553
L 206.463636 111.624553
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 213.070909 248.403612
L 219.678182 248.403612
L 219.678182 202.529229
L 213.070909 202.529229
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 219.678182 248.403612
L 226.285455 248.403612
L 226.285455 164.325044
L 219.678182 164.325044
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 226.285455 248.403612
L 232.892727 248.403612
L 232.892727 193.57455
L 226.285455 193.57455
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 232.892727 248.403612
L 239.5 248.403612
L 239.5 106.67012
L 232.892727 106.67012
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 239.5 248.403612
L 246.107273 248.403612
L 246.107273 95.733667
L 239.5 95.733667
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 246.107273 248.403612
L 252.714545 248.403612
L 252.714545 142.085143
L 246.107273 142.085143
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 252.714545 248.403612
L 259.321818 248.403612
L 259.321818 175.444994
L 252.714545 175.444994
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 259.321818 248.403612
L 265.929091 248.403612
L 265.929091 165.682925
L 259.321818 165.682925
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 265.929091 248.403612
L 272.536364 248.403612
L 272.536364 94.926278
L 265.929091 94.926278
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 272.536364 248.403612
L 279.143636 248.403612
L 279.143636 208.841545
L 272.536364 208.841545
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 279.143636 248.403612
L 285.750909 248.403612
L 285.750909 81.714456
L 279.143636 81.714456
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 285.750909 248.403612
L 292.358182 248.403612
L 292.358182 152.067409
L 285.750909 152.067409
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 292.358182 248.403612
L 298.965455 248.403612
L 298.965455 170.123566
L 292.358182 170.123566
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 298.965455 248.403612
L 305.572727 248.403612
L 305.572727 42.078989
L 298.965455 42.078989
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 305.572727 248.403612
L 312.18 248.403612
L 312.18 152.507803
L 305.572727 152.507803
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 312.18 248.403612
L 318.787273 248.403612
L 318.787273 147.002877
L 312.18 147.002877
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 318.787273 248.403612
L 325.394545 248.403612
L 325.394545 117.973568
L 318.787273 117.973568
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 325.394545 248.403612
L 332.001818 248.403612
L 332.001818 119.221351
L 325.394545 119.221351
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 332.001818 248.403612
L 338.609091 248.403612
L 338.609091 75.255342
L 332.001818 75.255342
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 338.609091 248.403612
L 345.216364 248.403612
L 345.216364 127.331942
L 338.609091 127.331942
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 345.216364 248.403612
L 351.823636 248.403612
L 351.823636 51.107067
L 345.216364 51.107067
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 351.823636 248.403612
L 358.430909 248.403612
L 358.430909 129.533912
L 351.823636 129.533912
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 358.430909 248.403612
L 365.038182 248.403612
L 365.038182 150.122335
L 358.430909 150.122335
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 365.038182 248.403612
L 371.645455 248.403612
L 371.645455 150.819625
L 365.038182 150.819625
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 371.645455 248.403612
L 378.252727 248.403612
L 378.252727 215.741052
L 371.645455 215.741052
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 378.252727 248.403612
L 384.86 248.403612
L 384.86 175.811989
L 378.252727 175.811989
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 384.86 248.403612
L 391.467273 248.403612
L 391.467273 235.852381
L 384.86 235.852381
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 391.467273 248.403612
L 398.074545 248.403612
L 398.074545 235.815681
L 391.467273 235.815681
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#pf9da0770a1) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 398.074545 248.403612
L 404.681818 248.403612
L 404.681818 224.145239
L 398.074545 224.145239
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 248.403612
L 57.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 248.403612
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 248.403612
L 421.2 248.403612
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pf9da0770a1&amp;gt;&amp;lt;rect height=237.603612 width=363.4 x=57.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-5083171276244515596bottom&amp;ndash;5083171276244515596common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=50&amp;gt;50&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3732&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=81&amp;gt;81&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3520&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=84&amp;gt;84&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3299&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=87&amp;gt;87&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3239&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=85&amp;gt;85&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3164&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=70&amp;gt;70&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2923&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=62&amp;gt;62&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2897&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=75&amp;gt;75&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2885&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=59&amp;gt;59&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2885&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=82&amp;gt;82&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2744&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (64)&amp;quot;&amp;gt;Other values (64)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;81159&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;72.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-5083171276244515596bottom&amp;ndash;5083171276244515596extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-5083171276244515596extreme_values&amp;ndash;5083171276244515596firstn aria-controls=-5083171276244515596extreme_values&amp;ndash;5083171276244515596firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-5083171276244515596extreme_values&amp;ndash;5083171276244515596lastn aria-controls=-5083171276244515596extreme_values&amp;ndash;5083171276244515596lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-5083171276244515596extreme_values&amp;ndash;5083171276244515596firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=20&amp;gt;20&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;322&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:42.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=23&amp;gt;23&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;600&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:78.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=25&amp;gt;25&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;320&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:42.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=26&amp;gt;26&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;760&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=27&amp;gt;27&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;592&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:77.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-5083171276244515596extreme_values&amp;ndash;5083171276244515596lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=99&amp;gt;99&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;325&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:33.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=98&amp;gt;98&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;336&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=97&amp;gt;97&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;343&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=95&amp;gt;95&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;342&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:34.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=94&amp;gt;94&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;986&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_3530489825858011296&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=temp_min&amp;gt;&amp;lt;a href=#pp_var_3530489825858011296&amp;gt;temp_min&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;&amp;lt;abbr title=&amp;quot;This variable has a high correlation with 2 fields: temp_max, temp_ave&amp;quot;&amp;gt;HIGH CORRELATION&amp;lt;/abbr&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;64&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;48.86229068&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;12&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;77&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.332400&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 130.093398
L 200.482014 130.093398
L 200.482014 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.961716 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(92.019622 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(145.077528 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(198.135434 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.42191 130.093398
L 22.870674 130.093398
L 22.870674 117.327475
L 19.42191 117.327475
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 22.870674 130.093398
L 26.319437 130.093398
L 26.319437 126.185732
L 22.870674 126.185732
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.319437 130.093398
L 29.768201 130.093398
L 29.768201 118.96447
L 26.319437 118.96447
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 29.768201 130.093398
L 33.216965 130.093398
L 33.216965 119.611347
L 29.768201 119.611347
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.216965 130.093398
L 36.665729 130.093398
L 36.665729 118.106368
L 33.216965 118.106368
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 36.665729 130.093398
L 40.114493 130.093398
L 40.114493 129.090079
L 36.665729 129.090079
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 40.114493 130.093398
L 43.563257 130.093398
L 43.563257 108.865265
L 40.114493 108.865265
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 43.563257 130.093398
L 47.012021 130.093398
L 47.012021 116.971032
L 43.563257 116.971032
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 47.012021 130.093398
L 50.460785 130.093398
L 50.460785 121.195536
L 47.012021 121.195536
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 50.460785 130.093398
L 53.909549 130.093398
L 53.909549 118.700438
L 50.460785 118.700438
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 53.909549 130.093398
L 57.358312 130.093398
L 57.358312 96.521791
L 53.909549 96.521791
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 57.358312 130.093398
L 60.807076 130.093398
L 60.807076 114.700361
L 57.358312 114.700361
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 60.807076 130.093398
L 64.25584 130.093398
L 64.25584 112.284473
L 60.807076 112.284473
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 64.25584 130.093398
L 67.704604 130.093398
L 67.704604 77.960376
L 64.25584 77.960376
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 67.704604 130.093398
L 71.153368 130.093398
L 71.153368 114.277911
L 67.704604 114.277911
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 71.153368 130.093398
L 74.602132 130.093398
L 74.602132 85.406065
L 71.153368 85.406065
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.602132 130.093398
L 78.050896 130.093398
L 78.050896 80.785513
L 74.602132 80.785513
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 78.050896 130.093398
L 81.49966 130.093398
L 81.49966 112.865342
L 78.050896 112.865342
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 81.49966 130.093398
L 84.948424 130.093398
L 84.948424 105.287638
L 81.49966 105.287638
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 84.948424 130.093398
L 88.397187 130.093398
L 88.397187 83.491836
L 84.948424 83.491836
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 88.397187 130.093398
L 91.845951 130.093398
L 91.845951 67.68955
L 88.397187 67.68955
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 91.845951 130.093398
L 95.294715 130.093398
L 95.294715 105.459258
L 91.845951 105.459258
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 95.294715 130.093398
L 98.743479 130.093398
L 98.743479 109.036885
L 95.294715 109.036885
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 98.743479 130.093398
L 102.192243 130.093398
L 102.192243 90.89792
L 98.743479 90.89792
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 102.192243 130.093398
L 105.641007 130.093398
L 105.641007 92.32369
L 102.192243 92.32369
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 105.641007 130.093398
L 109.089771 130.093398
L 109.089771 108.271194
L 105.641007 108.271194
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 109.089771 130.093398
L 112.538535 130.093398
L 112.538535 77.511522
L 109.089771 77.511522
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 112.538535 130.093398
L 115.987299 130.093398
L 115.987299 103.360208
L 112.538535 103.360208
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 115.987299 130.093398
L 119.436062 130.093398
L 119.436062 100.851908
L 115.987299 100.851908
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 119.436062 130.093398
L 122.884826 130.093398
L 122.884826 100.746296
L 119.436062 100.746296
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 122.884826 130.093398
L 126.33359 130.093398
L 126.33359 88.231202
L 122.884826 88.231202
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 126.33359 130.093398
L 129.782354 130.093398
L 129.782354 91.703216
L 126.33359 91.703216
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 129.782354 130.093398
L 133.231118 130.093398
L 133.231118 110.845501
L 129.782354 110.845501
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 133.231118 130.093398
L 136.679882 130.093398
L 136.679882 61.894058
L 133.231118 61.894058
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 136.679882 130.093398
L 140.128646 130.093398
L 140.128646 117.78953
L 136.679882 117.78953
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 140.128646 130.093398
L 143.57741 130.093398
L 143.57741 92.983769
L 140.128646 92.983769
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 143.57741 130.093398
L 147.026174 130.093398
L 147.026174 84.8648
L 143.57741 84.8648
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 147.026174 130.093398
L 150.474937 130.093398
L 150.474937 98.092779
L 147.026174 98.092779
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 150.474937 130.093398
L 153.923701 130.093398
L 153.923701 121.050319
L 150.474937 121.050319
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.923701 130.093398
L 157.372465 130.093398
L 157.372465 112.706923
L 153.923701 112.706923
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 157.372465 130.093398
L 160.821229 130.093398
L 160.821229 45.128057
L 157.372465 45.128057
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 160.821229 130.093398
L 164.269993 130.093398
L 164.269993 86.633811
L 160.821229 86.633811
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 164.269993 130.093398
L 167.718757 130.093398
L 167.718757 99.214913
L 164.269993 99.214913
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 167.718757 130.093398
L 171.167521 130.093398
L 171.167521 16.480638
L 167.718757 16.480638
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.167521 130.093398
L 174.616285 130.093398
L 174.616285 107.162261
L 171.167521 107.162261
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 174.616285 130.093398
L 178.065049 130.093398
L 178.065049 98.832067
L 174.616285 98.832067
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.065049 130.093398
L 181.513812 130.093398
L 181.513812 92.297287
L 178.065049 92.297287
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 181.513812 130.093398
L 184.962576 130.093398
L 184.962576 121.274746
L 181.513812 121.274746
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 184.962576 130.093398
L 188.41134 130.093398
L 188.41134 121.076722
L 184.962576 121.076722
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p5beff9eb13) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 188.41134 130.093398
L 191.860104 130.093398
L 191.860104 117.182257
L 188.41134 117.182257
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 200.482014 130.093398
L 200.482014 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 200.482014 130.093398
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 200.482014 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5beff9eb13&amp;gt;&amp;lt;rect height=119.293398 width=189.682014 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-3530489825858011296, #minifreqtable3530489825858011296&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-3530489825858011296 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#3530489825858011296bottom-3530489825858011296statistics aria-controls=3530489825858011296bottom-3530489825858011296statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3530489825858011296bottom-3530489825858011296histogram aria-controls=3530489825858011296bottom-3530489825858011296histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3530489825858011296bottom-3530489825858011296common_values aria-controls=3530489825858011296bottom-3530489825858011296common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3530489825858011296bottom-3530489825858011296extreme_values aria-controls=3530489825858011296bottom-3530489825858011296extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=3530489825858011296bottom-3530489825858011296statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;12&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;22&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;50&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;64&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;71&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;77&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;65&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;28&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;16.14572404&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.3304332198&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.9828942891&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;48.86229068&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;14&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.2360640105&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5494418&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;260.6844047&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3530489825858011296bottom-3530489825858011296histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.401433&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 57.8 252.381088
L 415.211173 252.381088
L 415.211173 10.8
L 57.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(61.944252 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(111.931829 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(161.919405 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(211.906982 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.894559 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(311.882135 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(361.869712 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(411.857289 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.739063 255.959994)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 202.490966)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 149.021938)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 95.552911)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 42.083883)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.741094 157.573747)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.045962 252.381088
L 80.544347 252.381088
L 80.544347 226.528813
L 74.045962 226.528813
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 80.544347 252.381088
L 87.042732 252.381088
L 87.042732 244.467672
L 80.544347 244.467672
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 87.042732 252.381088
L 93.541117 252.381088
L 93.541117 229.843892
L 87.042732 229.843892
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.541117 252.381088
L 100.039502 252.381088
L 100.039502 231.153884
L 93.541117 231.153884
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.039502 252.381088
L 106.537887 252.381088
L 106.537887 228.106149
L 100.039502 228.106149
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 106.537887 252.381088
L 113.036272 252.381088
L 113.036272 250.349265
L 106.537887 250.349265
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 113.036272 252.381088
L 119.534657 252.381088
L 119.534657 209.391989
L 113.036272 209.391989
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 119.534657 252.381088
L 126.033042 252.381088
L 126.033042 225.806981
L 119.534657 225.806981
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 126.033042 252.381088
L 132.531427 252.381088
L 132.531427 234.362025
L 126.033042 234.362025
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 132.531427 252.381088
L 139.029812 252.381088
L 139.029812 229.309202
L 132.531427 229.309202
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 139.029812 252.381088
L 145.528197 252.381088
L 145.528197 184.395219
L 139.029812 184.395219
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 145.528197 252.381088
L 152.026582 252.381088
L 152.026582 221.208645
L 145.528197 221.208645
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 152.026582 252.381088
L 158.524967 252.381088
L 158.524967 216.316228
L 152.026582 216.316228
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 158.524967 252.381088
L 165.023352 252.381088
L 165.023352 146.806492
L 158.524967 146.806492
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 165.023352 252.381088
L 171.521737 252.381088
L 171.521737 220.35314
L 165.023352 220.35314
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.521737 252.381088
L 178.020122 252.381088
L 178.020122 161.884758
L 171.521737 161.884758
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.020122 252.381088
L 184.518507 252.381088
L 184.518507 152.527678
L 178.020122 152.527678
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 184.518507 252.381088
L 191.016892 252.381088
L 191.016892 217.492547
L 184.518507 217.492547
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 191.016892 252.381088
L 197.515277 252.381088
L 197.515277 202.146936
L 191.016892 202.146936
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 197.515277 252.381088
L 204.013662 252.381088
L 204.013662 158.008254
L 197.515277 158.008254
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 204.013662 252.381088
L 210.512047 252.381088
L 210.512047 126.007041
L 204.013662 126.007041
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 210.512047 252.381088
L 217.010432 252.381088
L 217.010432 202.494485
L 210.512047 202.494485
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 217.010432 252.381088
L 223.508817 252.381088
L 223.508817 209.739538
L 217.010432 209.739538
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 223.508817 252.381088
L 230.007202 252.381088
L 230.007202 173.006316
L 223.508817 173.006316
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 230.007202 252.381088
L 236.505587 252.381088
L 236.505587 175.893643
L 230.007202 175.893643
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 236.505587 252.381088
L 243.003972 252.381088
L 243.003972 208.188936
L 236.505587 208.188936
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 243.003972 252.381088
L 249.502357 252.381088
L 249.502357 145.897519
L 243.003972 145.897519
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 249.502357 252.381088
L 256.000742 252.381088
L 256.000742 198.243697
L 249.502357 198.243697
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 256.000742 252.381088
L 262.499126 252.381088
L 262.499126 193.164139
L 256.000742 193.164139
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 262.499126 252.381088
L 268.997511 252.381088
L 268.997511 192.950263
L 262.499126 192.950263
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 268.997511 252.381088
L 275.495896 252.381088
L 275.495896 167.605944
L 268.997511 167.605944
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 275.495896 252.381088
L 281.994281 252.381088
L 281.994281 174.637121
L 275.495896 174.637121
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 281.994281 252.381088
L 288.492666 252.381088
L 288.492666 213.402166
L 281.994281 213.402166
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 288.492666 252.381088
L 294.991051 252.381088
L 294.991051 114.270589
L 288.492666 114.270589
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 294.991051 252.381088
L 301.489436 252.381088
L 301.489436 227.464521
L 294.991051 227.464521
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 301.489436 252.381088
L 307.987821 252.381088
L 307.987821 177.230369
L 301.489436 177.230369
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 307.987821 252.381088
L 314.486206 252.381088
L 314.486206 160.788643
L 307.987821 160.788643
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 314.486206 252.381088
L 320.984591 252.381088
L 320.984591 187.576626
L 314.486206 187.576626
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 320.984591 252.381088
L 327.482976 252.381088
L 327.482976 234.067946
L 320.984591 234.067946
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 327.482976 252.381088
L 333.981361 252.381088
L 333.981361 217.171733
L 327.482976 217.171733
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 333.981361 252.381088
L 340.479746 252.381088
L 340.479746 80.317756
L 333.981361 80.317756
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 340.479746 252.381088
L 346.978131 252.381088
L 346.978131 164.371068
L 340.479746 164.371068
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 346.978131 252.381088
L 353.476516 252.381088
L 353.476516 189.84906
L 346.978131 189.84906
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 353.476516 252.381088
L 359.974901 252.381088
L 359.974901 22.303861
L 353.476516 22.303861
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 359.974901 252.381088
L 366.473286 252.381088
L 366.473286 205.943237
L 359.974901 205.943237
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 366.473286 252.381088
L 372.971671 252.381088
L 372.971671 189.073759
L 366.473286 189.073759
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 372.971671 252.381088
L 379.470056 252.381088
L 379.470056 175.840174
L 372.971671 175.840174
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 379.470056 252.381088
L 385.968441 252.381088
L 385.968441 234.522432
L 379.470056 234.522432
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 385.968441 252.381088
L 392.466826 252.381088
L 392.466826 234.121415
L 385.968441 234.121415
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#pd4efb81fbd) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 392.466826 252.381088
L 398.965211 252.381088
L 398.965211 226.234733
L 392.466826 226.234733
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 252.381088
L 57.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 415.211173 252.381088
L 415.211173 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 252.381088
L 415.211173 252.381088
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 10.8
L 415.211173 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd4efb81fbd&amp;gt;&amp;lt;rect height=241.581088 width=357.411173 x=57.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3530489825858011296bottom-3530489825858011296common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=69&amp;gt;69&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5081&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:6.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=37&amp;gt;37&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3530&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=55&amp;gt;55&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3525&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=68&amp;gt;68&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3525&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=65&amp;gt;65&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3446&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=32&amp;gt;32&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3385&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=66&amp;gt;66&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3292&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=39&amp;gt;39&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3158&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=64&amp;gt;64&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2990&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=53&amp;gt;53&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2908&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (54)&amp;quot;&amp;gt;Other values (54)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;77607&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;69.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3530489825858011296bottom-3530489825858011296extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#3530489825858011296extreme_values-3530489825858011296firstn aria-controls=3530489825858011296extreme_values-3530489825858011296firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#3530489825858011296extreme_values-3530489825858011296lastn aria-controls=3530489825858011296extreme_values-3530489825858011296lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=3530489825858011296extreme_values-3530489825858011296firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=12&amp;gt;12&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;967&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=14&amp;gt;14&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;296&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:30.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=15&amp;gt;15&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;843&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:87.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=17&amp;gt;17&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;794&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:82.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=18&amp;gt;18&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;908&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:93.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=3530489825858011296extreme_values-3530489825858011296lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=77&amp;gt;77&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;322&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:17.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=76&amp;gt;76&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;656&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:35.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=75&amp;gt;75&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;683&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:36.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=74&amp;gt;74&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;668&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:35.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=73&amp;gt;73&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1868&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_667215055855875050&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=temp_ave&amp;gt;&amp;lt;a href=#pp_var_667215055855875050&amp;gt;temp_ave&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;&amp;lt;abbr title=&amp;quot;This variable has a high correlation with 2 fields: temp_max, temp_min&amp;quot;&amp;gt;HIGH CORRELATION&amp;lt;/abbr&amp;gt;&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;124&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;57.07125579&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;16&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;87&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.474865&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 130.093398
L 205.2 130.093398
L 205.2 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(27.909474 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(77.691804 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(127.474134 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(177.256465 150.933951)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.636364 130.093398
L 23.170909 130.093398
L 23.170909 124.012396
L 19.636364 124.012396
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 23.170909 130.093398
L 26.705455 130.093398
L 26.705455 117.912509
L 23.170909 117.912509
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.705455 130.093398
L 30.24 130.093398
L 30.24 124.899996
L 26.705455 124.899996
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 30.24 130.093398
L 33.774545 130.093398
L 33.774545 118.951189
L 30.24 118.951189
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.774545 130.093398
L 37.309091 130.093398
L 37.309091 120.613078
L 33.774545 120.613078
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.309091 130.093398
L 40.843636 130.093398
L 40.843636 115.835148
L 37.309091 115.835148
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 40.843636 130.093398
L 44.378182 130.093398
L 44.378182 124.220132
L 40.843636 124.220132
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 44.378182 130.093398
L 47.912727 130.093398
L 47.912727 106.147092
L 44.378182 106.147092
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 47.912727 130.093398
L 51.447273 130.093398
L 51.447273 103.729799
L 47.912727 103.729799
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 51.447273 130.093398
L 54.981818 130.093398
L 54.981818 106.73253
L 51.447273 106.73253
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 54.981818 130.093398
L 58.516364 130.093398
L 58.516364 124.541179
L 54.981818 124.541179
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 58.516364 130.093398
L 62.050909 130.093398
L 62.050909 103.975305
L 58.516364 103.975305
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 62.050909 130.093398
L 65.585455 130.093398
L 65.585455 95.193734
L 62.050909 95.193734
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 65.585455 130.093398
L 69.12 130.093398
L 69.12 84.127065
L 65.585455 84.127065
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 69.12 130.093398
L 72.654545 130.093398
L 72.654545 85.03355
L 69.12 85.03355
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 72.654545 130.093398
L 76.189091 130.093398
L 76.189091 84.164836
L 72.654545 84.164836
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 76.189091 130.093398
L 79.723636 130.093398
L 79.723636 75.874277
L 76.189091 75.874277
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.723636 130.093398
L 83.258182 130.093398
L 83.258182 66.205106
L 79.723636 66.205106
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 83.258182 130.093398
L 86.792727 130.093398
L 86.792727 82.521832
L 83.258182 82.521832
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.792727 130.093398
L 90.327273 130.093398
L 90.327273 62.25812
L 86.792727 62.25812
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 90.327273 130.093398
L 93.861818 130.093398
L 93.861818 58.235594
L 90.327273 58.235594
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.861818 130.093398
L 97.396364 130.093398
L 97.396364 95.816942
L 93.861818 95.816942
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 97.396364 130.093398
L 100.930909 130.093398
L 100.930909 96.194644
L 97.396364 96.194644
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.930909 130.093398
L 104.465455 130.093398
L 104.465455 78.499306
L 100.930909 78.499306
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 104.465455 130.093398
L 108 130.093398
L 108 111.850392
L 104.465455 111.850392
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 108 130.093398
L 111.534545 130.093398
L 111.534545 74.835596
L 108 74.835596
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 111.534545 130.093398
L 115.069091 130.093398
L 115.069091 50.209426
L 111.534545 50.209426
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 115.069091 130.093398
L 118.603636 130.093398
L 118.603636 93.361879
L 115.069091 93.361879
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 118.603636 130.093398
L 122.138182 130.093398
L 122.138182 53.231042
L 118.603636 53.231042
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 122.138182 130.093398
L 125.672727 130.093398
L 125.672727 71.77621
L 122.138182 71.77621
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.672727 130.093398
L 129.207273 130.093398
L 129.207273 78.971433
L 125.672727 78.971433
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 129.207273 130.093398
L 132.741818 130.093398
L 132.741818 94.627181
L 129.207273 94.627181
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 132.741818 130.093398
L 136.276364 130.093398
L 136.276364 87.092026
L 132.741818 87.092026
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 136.276364 130.093398
L 139.810909 130.093398
L 139.810909 70.756415
L 136.276364 70.756415
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 139.810909 130.093398
L 143.345455 130.093398
L 143.345455 79.160284
L 139.810909 79.160284
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 143.345455 130.093398
L 146.88 130.093398
L 146.88 81.275415
L 143.345455 81.275415
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 146.88 130.093398
L 150.414545 130.093398
L 150.414545 76.270864
L 146.88 76.270864
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 150.414545 130.093398
L 153.949091 130.093398
L 153.949091 64.127745
L 150.414545 64.127745
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.949091 130.093398
L 157.483636 130.093398
L 157.483636 60.973933
L 153.949091 60.973933
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 157.483636 130.093398
L 161.018182 130.093398
L 161.018182 70.133206
L 157.483636 70.133206
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 161.018182 130.093398
L 164.552727 130.093398
L 164.552727 80.708862
L 161.018182 80.708862
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 164.552727 130.093398
L 168.087273 130.093398
L 168.087273 16.480638
L 164.552727 16.480638
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 168.087273 130.093398
L 171.621818 130.093398
L 171.621818 43.788492
L 168.087273 43.788492
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.621818 130.093398
L 175.156364 130.093398
L 175.156364 61.25721
L 171.621818 61.25721
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 175.156364 130.093398
L 178.690909 130.093398
L 178.690909 65.581897
L 175.156364 65.581897
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.690909 130.093398
L 182.225455 130.093398
L 182.225455 98.064269
L 178.690909 98.064269
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 182.225455 130.093398
L 185.76 130.093398
L 185.76 100.594872
L 182.225455 100.594872
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 185.76 130.093398
L 189.294545 130.093398
L 189.294545 105.467228
L 185.76 105.467228
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 189.294545 130.093398
L 192.829091 130.093398
L 192.829091 111.057218
L 189.294545 111.057218
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p1c5b0e80f4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 192.829091 130.093398
L 196.363636 130.093398
L 196.363636 123.748005
L 192.829091 123.748005
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.2 130.093398
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 130.093398
L 205.2 130.093398
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1c5b0e80f4&amp;gt;&amp;lt;rect height=119.293398 width=194.4 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-667215055855875050, #minifreqtable667215055855875050&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-667215055855875050 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#667215055855875050bottom-667215055855875050statistics aria-controls=667215055855875050bottom-667215055855875050statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#667215055855875050bottom-667215055855875050histogram aria-controls=667215055855875050bottom-667215055855875050histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#667215055855875050bottom-667215055855875050common_values aria-controls=667215055855875050bottom-667215055855875050common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#667215055855875050bottom-667215055855875050extreme_values aria-controls=667215055855875050bottom-667215055855875050extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=667215055855875050bottom-667215055855875050statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;16&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;28.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;43.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;58&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;72&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;80&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;87&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;71&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;28.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;16.70001501&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.2926169186&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.9336836186&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;57.07125579&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;14.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.2817431797&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6417491.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;278.8905013&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=667215055855875050bottom-667215055855875050histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.545876&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 57.8 252.381088
L 416.39829 252.381088
L 416.39829 10.8
L 57.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(90.361837 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.277111 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(182.192385 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(228.107659 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.022933 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(319.938207 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.853481 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(411.768755 275.806779)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.739063 255.959994)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 217.715774)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 179.471554)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 141.227335)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 102.983115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 64.738895)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 26.494675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.741094 157.573747)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.099922 252.381088
L 80.619891 252.381088
L 80.619891 240.066449
L 74.099922 240.066449
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 80.619891 252.381088
L 87.13986 252.381088
L 87.13986 227.713566
L 80.619891 227.713566
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 87.13986 252.381088
L 93.659829 252.381088
L 93.659829 241.863927
L 87.13986 241.863927
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.659829 252.381088
L 100.179798 252.381088
L 100.179798 229.816998
L 93.659829 229.816998
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.179798 252.381088
L 106.699767 252.381088
L 106.699767 233.182489
L 100.179798 233.182489
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 106.699767 252.381088
L 113.219736 252.381088
L 113.219736 223.506702
L 106.699767 223.506702
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 113.219736 252.381088
L 119.739705 252.381088
L 119.739705 240.487135
L 113.219736 240.487135
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 119.739705 252.381088
L 126.259674 252.381088
L 126.259674 203.887417
L 119.739705 203.887417
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 126.259674 252.381088
L 132.779643 252.381088
L 132.779643 198.992157
L 126.259674 198.992157
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 132.779643 252.381088
L 139.299611 252.381088
L 139.299611 205.072988
L 132.779643 205.072988
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 139.299611 252.381088
L 145.81958 252.381088
L 145.81958 241.137287
L 139.299611 241.137287
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 145.81958 252.381088
L 152.339549 252.381088
L 152.339549 199.489332
L 145.81958 199.489332
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 152.339549 252.381088
L 158.859518 252.381088
L 158.859518 181.705769
L 152.339549 181.705769
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 158.859518 252.381088
L 165.379487 252.381088
L 165.379487 159.294657
L 158.859518 159.294657
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 165.379487 252.381088
L 171.899456 252.381088
L 171.899456 161.130379
L 165.379487 161.130379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.899456 252.381088
L 178.419425 252.381088
L 178.419425 159.371145
L 171.899456 159.371145
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 178.419425 252.381088
L 184.939394 252.381088
L 184.939394 142.581933
L 178.419425 142.581933
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 184.939394 252.381088
L 191.459363 252.381088
L 191.459363 123.000892
L 184.939394 123.000892
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 191.459363 252.381088
L 197.979332 252.381088
L 197.979332 156.043898
L 191.459363 156.043898
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 197.979332 252.381088
L 204.499301 252.381088
L 204.499301 115.00785
L 197.979332 115.00785
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 204.499301 252.381088
L 211.01927 252.381088
L 211.01927 106.861831
L 204.499301 106.861831
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 211.01927 252.381088
L 217.539238 252.381088
L 217.539238 182.967829
L 211.01927 182.967829
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 217.539238 252.381088
L 224.059207 252.381088
L 224.059207 183.732713
L 217.539238 183.732713
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 224.059207 252.381088
L 230.579176 252.381088
L 230.579176 147.897879
L 224.059207 147.897879
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 230.579176 252.381088
L 237.099145 252.381088
L 237.099145 215.437171
L 230.579176 215.437171
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 237.099145 252.381088
L 243.619114 252.381088
L 243.619114 140.478501
L 237.099145 140.478501
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 243.619114 252.381088
L 250.139083 252.381088
L 250.139083 90.608038
L 243.619114 90.608038
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 250.139083 252.381088
L 256.659052 252.381088
L 256.659052 177.99608
L 250.139083 177.99608
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 256.659052 252.381088
L 263.179021 252.381088
L 263.179021 96.727113
L 256.659052 96.727113
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 263.179021 252.381088
L 269.69899 252.381088
L 269.69899 134.282937
L 263.179021 134.282937
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 269.69899 252.381088
L 276.218959 252.381088
L 276.218959 148.853985
L 269.69899 148.853985
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 276.218959 252.381088
L 282.738928 252.381088
L 282.738928 180.558443
L 276.218959 180.558443
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 282.738928 252.381088
L 289.258896 252.381088
L 289.258896 165.298999
L 282.738928 165.298999
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 289.258896 252.381088
L 295.778865 252.381088
L 295.778865 132.217749
L 289.258896 132.217749
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 295.778865 252.381088
L 302.298834 252.381088
L 302.298834 149.236427
L 295.778865 149.236427
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 302.298834 252.381088
L 308.818803 252.381088
L 308.818803 153.519779
L 302.298834 153.519779
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 308.818803 252.381088
L 315.338772 252.381088
L 315.338772 143.385061
L 308.818803 143.385061
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 315.338772 252.381088
L 321.858741 252.381088
L 321.858741 118.794028
L 315.338772 118.794028
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 321.858741 252.381088
L 328.37871 252.381088
L 328.37871 112.407243
L 321.858741 112.407243
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 328.37871 252.381088
L 334.898679 252.381088
L 334.898679 130.95569
L 328.37871 130.95569
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 334.898679 252.381088
L 341.418648 252.381088
L 341.418648 152.372453
L 334.898679 152.372453
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 341.418648 252.381088
L 347.938617 252.381088
L 347.938617 22.303861
L 341.418648 22.303861
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 347.938617 252.381088
L 354.458586 252.381088
L 354.458586 77.605003
L 347.938617 77.605003
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 354.458586 252.381088
L 360.978555 252.381088
L 360.978555 112.980906
L 354.458586 112.980906
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 360.978555 252.381088
L 367.498523 252.381088
L 367.498523 121.738833
L 360.978555 121.738833
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 367.498523 252.381088
L 374.018492 252.381088
L 374.018492 187.518891
L 367.498523 187.518891
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 374.018492 252.381088
L 380.538461 252.381088
L 380.538461 192.643616
L 374.018492 192.643616
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 380.538461 252.381088
L 387.05843 252.381088
L 387.05843 202.510625
L 380.538461 202.510625
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 387.05843 252.381088
L 393.578399 252.381088
L 393.578399 213.830914
L 387.05843 213.830914
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#ped2a461ef4) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 393.578399 252.381088
L 400.098368 252.381088
L 400.098368 239.53103
L 393.578399 239.53103
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 252.381088
L 57.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 416.39829 252.381088
L 416.39829 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 252.381088
L 416.39829 252.381088
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 10.8
L 416.39829 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=ped2a461ef4&amp;gt;&amp;lt;rect height=241.581088 width=358.59829 x=57.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=667215055855875050bottom-667215055855875050common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=74.5&amp;gt;74.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2844&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=75.5&amp;gt;75.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2515&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=77.5&amp;gt;77.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2476&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=57&amp;gt;57&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2250&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=69.5&amp;gt;69.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2238&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=43.5&amp;gt;43.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1964&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=53&amp;gt;53&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1953&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=76&amp;gt;76&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1951&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=78.5&amp;gt;78.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1872&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=41.5&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1853&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (114)&amp;quot;&amp;gt;Other values (114)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;90531&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;80.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=667215055855875050bottom-667215055855875050extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#667215055855875050extreme_values-667215055855875050firstn aria-controls=667215055855875050extreme_values-667215055855875050firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#667215055855875050extreme_values-667215055855875050lastn aria-controls=667215055855875050extreme_values-667215055855875050lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=667215055855875050extreme_values-667215055855875050firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=16&amp;gt;16&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;322&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:99.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=17.5&amp;gt;17.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;325&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=18.5&amp;gt;18.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;320&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:98.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=19&amp;gt;19&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;275&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:84.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=20.5&amp;gt;20.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;266&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:81.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=667215055855875050extreme_values-667215055855875050lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=87&amp;gt;87&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;336&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:98.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=85.5&amp;gt;85.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;325&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:95.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=85&amp;gt;85&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;342&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=84.5&amp;gt;84.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;341&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:99.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=84&amp;gt;84&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;334&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:97.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_-4193058090693067184&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=temp_departure&amp;gt;&amp;lt;a href=#pp_var_-4193058090693067184&amp;gt;temp_departure&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;213&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1.018197017&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-19.1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;26.4&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;656&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.619584&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 13.139584 126.823029
L 205.2 126.823029
L 205.2 10.8
L 13.139584 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(15.080635 150.967539)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(53.454344 150.967539)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.052903 144.517841)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(131.853742 147.663582)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(170.227451 147.663582)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 21.869603 126.823029
L 25.361611 126.823029
L 25.361611 118.524977
L 21.869603 118.524977
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 25.361611 126.823029
L 28.853618 126.823029
L 28.853618 126.823029
L 25.361611 126.823029
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 28.853618 126.823029
L 32.345626 126.823029
L 32.345626 118.482203
L 28.853618 118.482203
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 32.345626 126.823029
L 35.837633 126.823029
L 35.837633 110.184151
L 32.345626 110.184151
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 35.837633 126.823029
L 39.329641 126.823029
L 39.329641 115.373998
L 35.837633 115.373998
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 39.329641 126.823029
L 42.821648 126.823029
L 42.821648 118.510719
L 39.329641 118.510719
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 42.821648 126.823029
L 46.313656 126.823029
L 46.313656 113.46345
L 42.821648 113.46345
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 46.313656 126.823029
L 49.805664 126.823029
L 49.805664 123.030449
L 46.313656 123.030449
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 49.805664 126.823029
L 53.297671 126.823029
L 53.297671 117.227515
L 49.805664 117.227515
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 53.297671 126.823029
L 56.789679 126.823029
L 56.789679 91.178474
L 53.297671 91.178474
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 56.789679 126.823029
L 60.281686 126.823029
L 60.281686 95.940586
L 56.789679 95.940586
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 60.281686 126.823029
L 63.773694 126.823029
L 63.773694 96.910118
L 60.281686 96.910118
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 63.773694 126.823029
L 67.265701 126.823029
L 67.265701 85.090383
L 63.773694 85.090383
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 67.265701 126.823029
L 70.757709 126.823029
L 70.757709 78.873973
L 67.265701 78.873973
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 70.757709 126.823029
L 74.249716 126.823029
L 74.249716 57.230599
L 70.757709 57.230599
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.249716 126.823029
L 77.741724 126.823029
L 77.741724 62.021227
L 74.249716 62.021227
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 77.741724 126.823029
L 81.233732 126.823029
L 81.233732 79.030809
L 77.741724 79.030809
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 81.233732 126.823029
L 84.725739 126.823029
L 84.725739 16.324906
L 81.233732 16.324906
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 84.725739 126.823029
L 88.217747 126.823029
L 88.217747 58.870248
L 84.725739 58.870248
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 88.217747 126.823029
L 91.709754 126.823029
L 91.709754 56.531965
L 88.217747 56.531965
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 91.709754 126.823029
L 95.201762 126.823029
L 95.201762 29.52765
L 91.709754 29.52765
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 95.201762 126.823029
L 98.693769 126.823029
L 98.693769 65.771034
L 95.201762 65.771034
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 98.693769 126.823029
L 102.185777 126.823029
L 102.185777 55.248761
L 98.693769 55.248761
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 102.185777 126.823029
L 105.677785 126.823029
L 105.677785 68.565567
L 102.185777 68.565567
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 105.677785 126.823029
L 109.169792 126.823029
L 109.169792 43.92805
L 105.677785 43.92805
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 109.169792 126.823029
L 112.6618 126.823029
L 112.6618 80.128661
L 109.169792 80.128661
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 112.6618 126.823029
L 116.153807 126.823029
L 116.153807 52.354423
L 112.6618 52.354423
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 116.153807 126.823029
L 119.645815 126.823029
L 119.645815 87.842143
L 116.153807 87.842143
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 119.645815 126.823029
L 123.137822 126.823029
L 123.137822 86.673002
L 119.645815 86.673002
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 123.137822 126.823029
L 126.62983 126.823029
L 126.62983 100.203675
L 123.137822 100.203675
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 126.62983 126.823029
L 130.121837 126.823029
L 130.121837 99.875745
L 126.62983 99.875745
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 130.121837 126.823029
L 133.613845 126.823029
L 133.613845 100.63141
L 130.121837 100.63141
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 133.613845 126.823029
L 137.105853 126.823029
L 137.105853 90.864801
L 133.613845 90.864801
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 137.105853 126.823029
L 140.59786 126.823029
L 140.59786 104.267154
L 137.105853 104.267154
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 140.59786 126.823029
L 144.089868 126.823029
L 144.089868 87.984721
L 140.59786 87.984721
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 144.089868 126.823029
L 147.581875 126.823029
L 147.581875 92.618514
L 144.089868 92.618514
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 147.581875 126.823029
L 151.073883 126.823029
L 151.073883 99.362464
L 147.581875 99.362464
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 151.073883 126.823029
L 154.56589 126.823029
L 154.56589 104.224381
L 151.073883 104.224381
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 154.56589 126.823029
L 158.057898 126.823029
L 158.057898 117.812086
L 154.56589 117.812086
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 158.057898 126.823029
L 161.549905 126.823029
L 161.549905 105.250944
L 158.057898 105.250944
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 161.549905 126.823029
L 165.041913 126.823029
L 165.041913 122.317558
L 161.549905 122.317558
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 165.041913 126.823029
L 168.533921 126.823029
L 168.533921 110.398018
L 165.041913 110.398018
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 168.533921 126.823029
L 172.025928 126.823029
L 172.025928 126.823029
L 168.533921 126.823029
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 172.025928 126.823029
L 175.517936 126.823029
L 175.517936 122.060917
L 172.025928 122.060917
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 175.517936 126.823029
L 179.009943 126.823029
L 179.009943 126.823029
L 175.517936 126.823029
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 179.009943 126.823029
L 182.501951 126.823029
L 182.501951 122.930644
L 179.009943 122.930644
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 182.501951 126.823029
L 185.993958 126.823029
L 185.993958 126.823029
L 182.501951 126.823029
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 185.993958 126.823029
L 189.485966 126.823029
L 189.485966 117.883375
L 185.993958 117.883375
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 189.485966 126.823029
L 192.977974 126.823029
L 192.977974 126.823029
L 189.485966 126.823029
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#pde24fabe20) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 192.977974 126.823029
L 196.469981 126.823029
L 196.469981 122.260526
L 192.977974 122.260526
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 13.139584 126.823029
L 13.139584 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.2 126.823029
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 13.139584 126.823029
L 205.2 126.823029
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 13.139584 10.8
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pde24fabe20&amp;gt;&amp;lt;rect height=116.023029 width=192.060416 x=13.139584 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom&amp;ndash;4193058090693067184, #minifreqtable-4193058090693067184&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom&amp;ndash;4193058090693067184 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-4193058090693067184bottom&amp;ndash;4193058090693067184statistics aria-controls=-4193058090693067184bottom&amp;ndash;4193058090693067184statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4193058090693067184bottom&amp;ndash;4193058090693067184histogram aria-controls=-4193058090693067184bottom&amp;ndash;4193058090693067184histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4193058090693067184bottom&amp;ndash;4193058090693067184common_values aria-controls=-4193058090693067184bottom&amp;ndash;4193058090693067184common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4193058090693067184bottom&amp;ndash;4193058090693067184extreme_values aria-controls=-4193058090693067184bottom&amp;ndash;4193058090693067184extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-4193058090693067184bottom&amp;ndash;4193058090693067184statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-19.1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-10.8&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-4.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;15.4&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;26.4&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;45.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;10.5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;8.131980378&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;7.98664722&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;-0.01725004631&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1.018197017&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.3247863868&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;114493.2&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;66.12910486&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4193058090693067184bottom&amp;ndash;4193058090693067184histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.693290&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 57.8 248.226835
L 421.2 248.226835
L 421.2 10.8
L 57.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(63.614349 275.782472)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.221741 275.782472)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(212.860195 267.72035)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(283.501499 271.652526)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(356.108892 271.652526)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.739063 251.805742)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 222.628865)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 193.451988)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 164.275111)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 135.098234)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 105.921357)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 76.744481)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 47.567604)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.05625 18.390727)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.741094 155.496621)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.318182 248.226835
L 80.925455 248.226835
L 80.925455 231.245893
L 74.318182 231.245893
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 80.925455 248.226835
L 87.532727 248.226835
L 87.532727 248.226835
L 80.925455 248.226835
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 87.532727 248.226835
L 94.14 248.226835
L 94.14 231.158362
L 87.532727 231.158362
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 94.14 248.226835
L 100.747273 248.226835
L 100.747273 214.17742
L 94.14 214.17742
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.747273 248.226835
L 107.354545 248.226835
L 107.354545 224.797803
L 100.747273 224.797803
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 107.354545 248.226835
L 113.961818 248.226835
L 113.961818 231.216716
L 107.354545 231.216716
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 113.961818 248.226835
L 120.569091 248.226835
L 120.569091 220.888102
L 113.961818 220.888102
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 120.569091 248.226835
L 127.176364 248.226835
L 127.176364 240.465786
L 120.569091 240.465786
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 127.176364 248.226835
L 133.783636 248.226835
L 133.783636 228.590797
L 127.176364 228.590797
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 133.783636 248.226835
L 140.390909 248.226835
L 140.390909 175.284643
L 133.783636 175.284643
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 140.390909 248.226835
L 146.998182 248.226835
L 146.998182 185.02972
L 140.390909 185.02972
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 146.998182 248.226835
L 153.605455 248.226835
L 153.605455 187.013748
L 146.998182 187.013748
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 153.605455 248.226835
L 160.212727 248.226835
L 160.212727 162.826117
L 153.605455 162.826117
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 160.212727 248.226835
L 166.82 248.226835
L 166.82 150.104999
L 160.212727 150.104999
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 166.82 248.226835
L 173.427273 248.226835
L 173.427273 105.814499
L 166.82 105.814499
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 173.427273 248.226835
L 180.034545 248.226835
L 180.034545 115.61793
L 173.427273 115.61793
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 180.034545 248.226835
L 186.641818 248.226835
L 186.641818 150.425944
L 180.034545 150.425944
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 186.641818 248.226835
L 193.249091 248.226835
L 193.249091 22.10604
L 186.641818 22.10604
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 193.249091 248.226835
L 199.856364 248.226835
L 199.856364 109.16984
L 193.249091 109.16984
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 199.856364 248.226835
L 206.463636 248.226835
L 206.463636 104.384832
L 199.856364 104.384832
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 206.463636 248.226835
L 213.070909 248.226835
L 213.070909 49.123828
L 206.463636 49.123828
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 213.070909 248.226835
L 219.678182 248.226835
L 219.678182 123.291449
L 213.070909 123.291449
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 219.678182 248.226835
L 226.285455 248.226835
L 226.285455 101.758914
L 219.678182 101.758914
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 226.285455 248.226835
L 232.892727 248.226835
L 232.892727 129.010117
L 226.285455 129.010117
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 232.892727 248.226835
L 239.5 248.226835
L 239.5 78.592473
L 232.892727 78.592473
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 239.5 248.226835
L 246.107273 248.226835
L 246.107273 152.672564
L 239.5 152.672564
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 246.107273 248.226835
L 252.714545 248.226835
L 252.714545 95.836008
L 246.107273 95.836008
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 252.714545 248.226835
L 259.321818 248.226835
L 259.321818 168.457254
L 252.714545 168.457254
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 259.321818 248.226835
L 265.929091 248.226835
L 265.929091 166.06475
L 259.321818 166.06475
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 265.929091 248.226835
L 272.536364 248.226835
L 272.536364 193.753606
L 265.929091 193.753606
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 272.536364 248.226835
L 279.143636 248.226835
L 279.143636 193.082538
L 272.536364 193.082538
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 279.143636 248.226835
L 285.750909 248.226835
L 285.750909 194.628913
L 279.143636 194.628913
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 285.750909 248.226835
L 292.358182 248.226835
L 292.358182 174.642752
L 285.750909 174.642752
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 292.358182 248.226835
L 298.965455 248.226835
L 298.965455 202.069016
L 292.358182 202.069016
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 298.965455 248.226835
L 305.572727 248.226835
L 305.572727 168.749023
L 298.965455 168.749023
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 305.572727 248.226835
L 312.18 248.226835
L 312.18 178.231508
L 305.572727 178.231508
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 312.18 248.226835
L 318.787273 248.226835
L 318.787273 192.032171
L 312.18 192.032171
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 318.787273 248.226835
L 325.394545 248.226835
L 325.394545 201.981486
L 318.787273 201.981486
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 325.394545 248.226835
L 332.001818 248.226835
L 332.001818 229.787049
L 325.394545 229.787049
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 332.001818 248.226835
L 338.609091 248.226835
L 338.609091 204.082221
L 332.001818 204.082221
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 338.609091 248.226835
L 345.216364 248.226835
L 345.216364 239.006942
L 338.609091 239.006942
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 345.216364 248.226835
L 351.823636 248.226835
L 351.823636 214.615073
L 345.216364 214.615073
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 351.823636 248.226835
L 358.430909 248.226835
L 358.430909 248.226835
L 351.823636 248.226835
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 358.430909 248.226835
L 365.038182 248.226835
L 365.038182 238.481758
L 358.430909 238.481758
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 365.038182 248.226835
L 371.645455 248.226835
L 371.645455 248.226835
L 365.038182 248.226835
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 371.645455 248.226835
L 378.252727 248.226835
L 378.252727 240.261548
L 371.645455 240.261548
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 378.252727 248.226835
L 384.86 248.226835
L 384.86 248.226835
L 378.252727 248.226835
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 384.86 248.226835
L 391.467273 248.226835
L 391.467273 229.932934
L 384.86 229.932934
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 391.467273 248.226835
L 398.074545 248.226835
L 398.074545 248.226835
L 391.467273 248.226835
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p2fa115d484) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 398.074545 248.226835
L 404.681818 248.226835
L 404.681818 238.890235
L 398.074545 238.890235
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 248.226835
L 57.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 248.226835
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 248.226835
L 421.2 248.226835
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 57.8 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p2fa115d484&amp;gt;&amp;lt;rect height=237.426835 width=363.4 x=57.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4193058090693067184bottom&amp;ndash;4193058090693067184common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.8&amp;gt;4.8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1796&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-3.6&amp;gt;-3.6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1610&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-0.4&amp;gt;-0.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1572&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-2.9&amp;gt;-2.9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1405&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.9&amp;gt;2.9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1332&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1305&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.1&amp;gt;2.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1266&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-9.5&amp;gt;-9.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1265&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.2&amp;gt;0.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1251&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.6&amp;gt;1.6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1238&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (203)&amp;quot;&amp;gt;Other values (203)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;98407&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;87.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4193058090693067184bottom&amp;ndash;4193058090693067184extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-4193058090693067184extreme_values&amp;ndash;4193058090693067184firstn aria-controls=-4193058090693067184extreme_values&amp;ndash;4193058090693067184firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4193058090693067184extreme_values&amp;ndash;4193058090693067184lastn aria-controls=-4193058090693067184extreme_values&amp;ndash;4193058090693067184lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-4193058090693067184extreme_values&amp;ndash;4193058090693067184firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-19.1&amp;gt;-19.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;322&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:55.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-18.6&amp;gt;-18.6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;260&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:44.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-16.4&amp;gt;-16.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;585&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-15.9&amp;gt;-15.9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;235&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:40.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=-15.7&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;275&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:47.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4193058090693067184extreme_values&amp;ndash;4193058090693067184lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=26.4&amp;gt;26.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;320&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:95.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=24.2&amp;gt;24.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;308&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:92.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=23.8&amp;gt;23.8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;319&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:95.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=22.1&amp;gt;22.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;273&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:81.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=20.2&amp;gt;20.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;334&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_5788723175470451430&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=ppt&amp;gt;&amp;lt;a href=#pp_var_5788723175470451430&amp;gt;ppt&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;ZEROS&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;60&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1215254298&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.86&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;54199&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;48.2%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.766560&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 133.275379
L 203.577232 133.275379
L 203.577232 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.452116 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(64.854196 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(110.256276 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(155.658357 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(201.060437 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.562601 133.275379
L 23.067642 133.275379
L 23.067642 16.632161
L 19.562601 16.632161
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 23.067642 133.275379
L 26.572683 133.275379
L 26.572683 125.207945
L 23.067642 125.207945
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 26.572683 133.275379
L 30.077723 133.275379
L 30.077723 129.32188
L 26.572683 129.32188
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 30.077723 133.275379
L 33.582764 133.275379
L 33.582764 130.413625
L 30.077723 130.413625
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.582764 133.275379
L 37.087804 133.275379
L 37.087804 131.989285
L 33.582764 131.989285
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 37.087804 133.275379
L 40.592845 133.275379
L 40.592845 131.770154
L 37.087804 131.770154
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 40.592845 133.275379
L 44.097886 133.275379
L 44.097886 131.13102
L 40.592845 131.13102
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 44.097886 133.275379
L 47.602926 133.275379
L 47.602926 132.556679
L 44.097886 132.556679
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 47.602926 133.275379
L 51.107967 133.275379
L 51.107967 131.631892
L 47.602926 131.631892
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 51.107967 133.275379
L 54.613007 133.275379
L 54.613007 132.05059
L 51.107967 132.05059
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 54.613007 133.275379
L 58.118048 133.275379
L 58.118048 132.791463
L 54.613007 132.791463
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 58.118048 133.275379
L 61.623089 133.275379
L 61.623089 132.025807
L 58.118048 132.025807
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 61.623089 133.275379
L 65.128129 133.275379
L 65.128129 132.154938
L 61.623089 132.154938
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 65.128129 133.275379
L 68.63317 133.275379
L 68.63317 133.275379
L 65.128129 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 68.63317 133.275379
L 72.13821 133.275379
L 72.13821 133.268857
L 68.63317 133.268857
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 72.13821 133.275379
L 75.643251 133.275379
L 75.643251 132.852768
L 72.13821 132.852768
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 75.643251 133.275379
L 79.148292 133.275379
L 79.148292 132.550158
L 75.643251 132.550158
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.148292 133.275379
L 82.653332 133.275379
L 82.653332 133.275379
L 79.148292 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 82.653332 133.275379
L 86.158373 133.275379
L 86.158373 133.275379
L 82.653332 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 86.158373 133.275379
L 89.663413 133.275379
L 89.663413 132.936247
L 86.158373 132.936247
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 89.663413 133.275379
L 93.168454 133.275379
L 93.168454 132.924507
L 89.663413 132.924507
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 93.168454 133.275379
L 96.673494 133.275379
L 96.673494 133.275379
L 93.168454 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 96.673494 133.275379
L 100.178535 133.275379
L 100.178535 133.275379
L 96.673494 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 100.178535 133.275379
L 103.683576 133.275379
L 103.683576 132.937551
L 100.178535 132.937551
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 103.683576 133.275379
L 107.188616 133.275379
L 107.188616 133.275379
L 103.683576 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 107.188616 133.275379
L 110.693657 133.275379
L 110.693657 133.275379
L 107.188616 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 110.693657 133.275379
L 114.198697 133.275379
L 114.198697 132.860594
L 110.693657 132.860594
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 114.198697 133.275379
L 117.703738 133.275379
L 117.703738 132.844942
L 114.198697 132.844942
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 117.703738 133.275379
L 121.208779 133.275379
L 121.208779 133.275379
L 117.703738 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 121.208779 133.275379
L 124.713819 133.275379
L 124.713819 133.275379
L 121.208779 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 124.713819 133.275379
L 128.21886 133.275379
L 128.21886 133.275379
L 124.713819 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 128.21886 133.275379
L 131.7239 133.275379
L 131.7239 133.275379
L 128.21886 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 131.7239 133.275379
L 135.228941 133.275379
L 135.228941 133.275379
L 131.7239 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 135.228941 133.275379
L 138.733982 133.275379
L 138.733982 133.275379
L 135.228941 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 138.733982 133.275379
L 142.239022 133.275379
L 142.239022 133.275379
L 138.733982 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 142.239022 133.275379
L 145.744063 133.275379
L 145.744063 133.275379
L 142.239022 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 145.744063 133.275379
L 149.249103 133.275379
L 149.249103 133.275379
L 145.744063 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 149.249103 133.275379
L 152.754144 133.275379
L 152.754144 133.275379
L 149.249103 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 152.754144 133.275379
L 156.259185 133.275379
L 156.259185 133.275379
L 152.754144 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 156.259185 133.275379
L 159.764225 133.275379
L 159.764225 132.877551
L 156.259185 132.877551
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 159.764225 133.275379
L 163.269266 133.275379
L 163.269266 133.275379
L 159.764225 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 163.269266 133.275379
L 166.774306 133.275379
L 166.774306 133.275379
L 163.269266 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 166.774306 133.275379
L 170.279347 133.275379
L 170.279347 133.275379
L 166.774306 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 170.279347 133.275379
L 173.784387 133.275379
L 173.784387 133.275379
L 170.279347 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 173.784387 133.275379
L 177.289428 133.275379
L 177.289428 133.275379
L 173.784387 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 177.289428 133.275379
L 180.794469 133.275379
L 180.794469 133.275379
L 177.289428 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 180.794469 133.275379
L 184.299509 133.275379
L 184.299509 133.275379
L 180.794469 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 184.299509 133.275379
L 187.80455 133.275379
L 187.80455 133.275379
L 184.299509 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 187.80455 133.275379
L 191.30959 133.275379
L 191.30959 133.275379
L 187.80455 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p2bbbf0e415) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 191.30959 133.275379
L 194.814631 133.275379
L 194.814631 132.932334
L 191.30959 132.932334
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 133.275379
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 203.577232 133.275379
L 203.577232 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 133.275379
L 203.577232 133.275379
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 203.577232 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p2bbbf0e415&amp;gt;&amp;lt;rect height=122.475379 width=192.777232 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom-5788723175470451430, #minifreqtable5788723175470451430&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom-5788723175470451430 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#5788723175470451430bottom-5788723175470451430statistics aria-controls=5788723175470451430bottom-5788723175470451430statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#5788723175470451430bottom-5788723175470451430histogram aria-controls=5788723175470451430bottom-5788723175470451430histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#5788723175470451430bottom-5788723175470451430common_values aria-controls=5788723175470451430bottom-5788723175470451430common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#5788723175470451430bottom-5788723175470451430extreme_values aria-controls=5788723175470451430bottom-5788723175470451430extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=5788723175470451430bottom-5788723175470451430statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.04&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.7&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.86&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.86&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.04&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.3716803183&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;3.05845714&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;39.1855526&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1215254298&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5.527246467&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;13665.17&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.138146259&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=5788723175470451430bottom-5788723175470451430histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.837888&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 63.425 250.436544
L 417.247358 250.436544
L 417.247358 10.8
L 63.425 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(76.421424 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(118.086798 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(159.752172 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(201.417547 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.082921 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.748295 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(326.413669 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(368.079044 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(409.744418 275.826666)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.364063 254.01545)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.120313 202.973185)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.120313 151.93092)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.120313 100.888655)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.120313 49.84639)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.805156 156.601475)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 79.507834 250.436544
L 85.940968 250.436544
L 85.940968 22.211264
L 79.507834 22.211264
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 85.940968 250.436544
L 92.374102 250.436544
L 92.374102 234.651724
L 85.940968 234.651724
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 92.374102 250.436544
L 98.807236 250.436544
L 98.807236 242.701089
L 92.374102 242.701089
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 98.807236 250.436544
L 105.24037 250.436544
L 105.24037 244.837208
L 98.807236 244.837208
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 105.24037 250.436544
L 111.673503 250.436544
L 111.673503 247.92016
L 105.24037 247.92016
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 111.673503 250.436544
L 118.106637 250.436544
L 118.106637 247.491405
L 111.673503 247.491405
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 118.106637 250.436544
L 124.539771 250.436544
L 124.539771 246.24087
L 118.106637 246.24087
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 124.539771 250.436544
L 130.972905 250.436544
L 130.972905 249.03033
L 124.539771 249.03033
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 130.972905 250.436544
L 137.406039 250.436544
L 137.406039 247.220881
L 130.972905 247.220881
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 137.406039 250.436544
L 143.839172 250.436544
L 143.839172 248.04011
L 137.406039 248.04011
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 143.839172 250.436544
L 150.272306 250.436544
L 150.272306 249.48971
L 143.839172 249.48971
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 150.272306 250.436544
L 156.70544 250.436544
L 156.70544 247.99162
L 150.272306 247.99162
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 156.70544 250.436544
L 163.138574 250.436544
L 163.138574 248.244279
L 156.70544 248.244279
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 163.138574 250.436544
L 169.571707 250.436544
L 169.571707 250.436544
L 163.138574 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 169.571707 250.436544
L 176.004841 250.436544
L 176.004841 250.423783
L 169.571707 250.423783
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 176.004841 250.436544
L 182.437975 250.436544
L 182.437975 249.609659
L 176.004841 249.609659
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 182.437975 250.436544
L 188.871109 250.436544
L 188.871109 249.017569
L 182.437975 249.017569
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_20&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 188.871109 250.436544
L 195.304243 250.436544
L 195.304243 250.436544
L 188.871109 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_21&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 195.304243 250.436544
L 201.737376 250.436544
L 201.737376 250.436544
L 195.304243 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_22&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 201.737376 250.436544
L 208.17051 250.436544
L 208.17051 249.772995
L 201.737376 249.772995
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_23&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 208.17051 250.436544
L 214.603644 250.436544
L 214.603644 249.750026
L 208.17051 249.750026
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_24&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 214.603644 250.436544
L 221.036778 250.436544
L 221.036778 250.436544
L 214.603644 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_25&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 221.036778 250.436544
L 227.469912 250.436544
L 227.469912 250.436544
L 221.036778 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_26&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 227.469912 250.436544
L 233.903045 250.436544
L 233.903045 249.775547
L 227.469912 249.775547
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_27&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 233.903045 250.436544
L 240.336179 250.436544
L 240.336179 250.436544
L 233.903045 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_28&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 240.336179 250.436544
L 246.769313 250.436544
L 246.769313 250.436544
L 240.336179 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_29&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 246.769313 250.436544
L 253.202447 250.436544
L 253.202447 249.624972
L 246.769313 249.624972
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_30&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 253.202447 250.436544
L 259.63558 250.436544
L 259.63558 249.594347
L 253.202447 249.594347
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_31&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 259.63558 250.436544
L 266.068714 250.436544
L 266.068714 250.436544
L 259.63558 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_32&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 266.068714 250.436544
L 272.501848 250.436544
L 272.501848 250.436544
L 266.068714 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_33&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 272.501848 250.436544
L 278.934982 250.436544
L 278.934982 250.436544
L 272.501848 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_34&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 278.934982 250.436544
L 285.368116 250.436544
L 285.368116 250.436544
L 278.934982 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_35&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 285.368116 250.436544
L 291.801249 250.436544
L 291.801249 250.436544
L 285.368116 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_36&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 291.801249 250.436544
L 298.234383 250.436544
L 298.234383 250.436544
L 291.801249 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_37&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 298.234383 250.436544
L 304.667517 250.436544
L 304.667517 250.436544
L 298.234383 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_38&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 304.667517 250.436544
L 311.100651 250.436544
L 311.100651 250.436544
L 304.667517 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_39&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 311.100651 250.436544
L 317.533785 250.436544
L 317.533785 250.436544
L 311.100651 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_40&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 317.533785 250.436544
L 323.966918 250.436544
L 323.966918 250.436544
L 317.533785 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_41&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 323.966918 250.436544
L 330.400052 250.436544
L 330.400052 250.436544
L 323.966918 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_42&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 330.400052 250.436544
L 336.833186 250.436544
L 336.833186 249.658149
L 330.400052 249.658149
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_43&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 336.833186 250.436544
L 343.26632 250.436544
L 343.26632 250.436544
L 336.833186 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_44&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 343.26632 250.436544
L 349.699453 250.436544
L 349.699453 250.436544
L 343.26632 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_45&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 349.699453 250.436544
L 356.132587 250.436544
L 356.132587 250.436544
L 349.699453 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_46&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 356.132587 250.436544
L 362.565721 250.436544
L 362.565721 250.436544
L 356.132587 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_47&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 362.565721 250.436544
L 368.998855 250.436544
L 368.998855 250.436544
L 362.565721 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_48&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 368.998855 250.436544
L 375.431989 250.436544
L 375.431989 250.436544
L 368.998855 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_49&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 375.431989 250.436544
L 381.865122 250.436544
L 381.865122 250.436544
L 375.431989 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_50&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 381.865122 250.436544
L 388.298256 250.436544
L 388.298256 250.436544
L 381.865122 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_51&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 388.298256 250.436544
L 394.73139 250.436544
L 394.73139 250.436544
L 388.298256 250.436544
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_52&amp;gt;&amp;lt;path clip-path=url(#p778ec9561f) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 394.73139 250.436544
L 401.164524 250.436544
L 401.164524 249.765338
L 394.73139 249.765338
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_53&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 250.436544
L 63.425 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_54&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 417.247358 250.436544
L 417.247358 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_55&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 250.436544
L 417.247358 250.436544
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_56&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 63.425 10.8
L 417.247358 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p778ec9561f&amp;gt;&amp;lt;rect height=239.636544 width=353.822358 x=63.425 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=50) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=5788723175470451430bottom-5788723175470451430common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;54199&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;48.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.01&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;25249&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;22.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:46.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.05&amp;gt;0.05&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3163&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.03&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2726&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.04&amp;gt;0.04&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2520&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.1&amp;gt;0.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1691&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:3.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.09&amp;gt;0.09&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1302&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.02&amp;gt;0.02&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1275&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.15&amp;gt;0.15&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1019&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.9%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.14&amp;gt;0.14&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;968&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.9%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (50)&amp;quot;&amp;gt;Other values (50)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;18335&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;16.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:33.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=5788723175470451430bottom-5788723175470451430extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#5788723175470451430extreme_values-5788723175470451430firstn aria-controls=5788723175470451430extreme_values-5788723175470451430firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#5788723175470451430extreme_values-5788723175470451430lastn aria-controls=5788723175470451430extreme_values-5788723175470451430lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=5788723175470451430extreme_values-5788723175470451430firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;54199&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;48.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.01&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;25249&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;22.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:46.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.02&amp;gt;0.02&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1275&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.03&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2726&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.04&amp;gt;0.04&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2520&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:4.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=5788723175470451430extreme_values-5788723175470451430lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3.86&amp;gt;3.86&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;263&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:79.7%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3.05&amp;gt;3.05&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;305&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:92.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.15&amp;gt;2.15&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;330&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.06&amp;gt;2.06&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;318&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:96.4%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.79&amp;gt;1.79&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;259&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:78.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_-4351960964740665307&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=new_snow&amp;gt;&amp;lt;a href=#pp_var_-4351960964740665307&amp;gt;new_snow&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;ZEROS&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;13&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.04793991836&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;7.8&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;103414&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;92.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.902632&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 133.275379
L 205.194682 133.275379
L 205.194682 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.525636 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(64.839082 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(110.152528 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(155.465974 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(200.77942 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.636122 133.275379
L 33.230156 133.275379
L 33.230156 16.632161
L 19.636122 16.632161
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 33.230156 133.275379
L 46.824189 133.275379
L 46.824189 132.924915
L 33.230156 132.924915
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 46.824189 133.275379
L 60.418223 133.275379
L 60.418223 132.379163
L 46.824189 132.379163
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 60.418223 133.275379
L 74.012257 133.275379
L 74.012257 133.275379
L 60.418223 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 74.012257 133.275379
L 87.606291 133.275379
L 87.606291 132.952361
L 74.012257 132.952361
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 87.606291 133.275379
L 101.200324 133.275379
L 101.200324 133.275379
L 87.606291 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 101.200324 133.275379
L 114.794358 133.275379
L 114.794358 133.275379
L 101.200324 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 114.794358 133.275379
L 128.388392 133.275379
L 128.388392 133.052644
L 114.794358 133.052644
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 128.388392 133.275379
L 141.982426 133.275379
L 141.982426 133.275379
L 128.388392 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 141.982426 133.275379
L 155.576459 133.275379
L 155.576459 133.095924
L 141.982426 133.095924
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 155.576459 133.275379
L 169.170493 133.275379
L 169.170493 133.275379
L 155.576459 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 169.170493 133.275379
L 182.764527 133.275379
L 182.764527 133.270101
L 169.170493 133.270101
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p3c80abb5ca) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 182.764527 133.275379
L 196.35856 133.275379
L 196.35856 133.195152
L 182.764527 133.195152
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 133.275379
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.194682 133.275379
L 205.194682 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 133.275379
L 205.194682 133.275379
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 205.194682 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p3c80abb5ca&amp;gt;&amp;lt;rect height=122.475379 width=194.394682 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom&amp;ndash;4351960964740665307, #minifreqtable-4351960964740665307&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom&amp;ndash;4351960964740665307 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-4351960964740665307bottom&amp;ndash;4351960964740665307statistics aria-controls=-4351960964740665307bottom&amp;ndash;4351960964740665307statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4351960964740665307bottom&amp;ndash;4351960964740665307histogram aria-controls=-4351960964740665307bottom&amp;ndash;4351960964740665307histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4351960964740665307bottom&amp;ndash;4351960964740665307common_values aria-controls=-4351960964740665307bottom&amp;ndash;4351960964740665307common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4351960964740665307bottom&amp;ndash;4351960964740665307extreme_values aria-controls=-4351960964740665307bottom&amp;ndash;4351960964740665307extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-4351960964740665307bottom&amp;ndash;4351960964740665307statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;7.8&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;7.8&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.4077062603&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;8.504525544&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;175.7368347&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.04793991836&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;12.22429804&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5390.7&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1662243947&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4351960964740665307bottom&amp;ndash;4351960964740665307histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:33.955585&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 69.05 256.358563
L 421.2 256.358563
L 421.2 10.8
L 69.05 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.918711 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(125.961835 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(167.004958 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(208.048082 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(249.091206 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(290.134329 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(331.177453 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(372.220576 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.2637 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(52.989062 259.93747)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 217.608143)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 175.278816)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 132.949489)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 90.620162)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.184375 48.290835)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.869219 159.562485)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 85.056818 256.358563
L 109.682692 256.358563
L 109.682692 22.493265
L 85.056818 22.493265
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 109.682692 256.358563
L 134.308566 256.358563
L 134.308566 255.655896
L 109.682692 255.655896
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 134.308566 256.358563
L 158.934441 256.358563
L 158.934441 254.561683
L 134.308566 254.561683
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 158.934441 256.358563
L 183.560315 256.358563
L 183.560315 256.358563
L 158.934441 256.358563
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 183.560315 256.358563
L 208.186189 256.358563
L 208.186189 255.710925
L 183.560315 255.710925
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 208.186189 256.358563
L 232.812063 256.358563
L 232.812063 256.358563
L 208.186189 256.358563
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 232.812063 256.358563
L 257.437937 256.358563
L 257.437937 256.358563
L 232.812063 256.358563
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 257.437937 256.358563
L 282.063811 256.358563
L 282.063811 255.911989
L 257.437937 255.911989
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 282.063811 256.358563
L 306.689685 256.358563
L 306.689685 256.358563
L 282.063811 256.358563
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 306.689685 256.358563
L 331.315559 256.358563
L 331.315559 255.998764
L 306.689685 255.998764
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 331.315559 256.358563
L 355.941434 256.358563
L 355.941434 256.358563
L 331.315559 256.358563
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 355.941434 256.358563
L 380.567308 256.358563
L 380.567308 256.347981
L 355.941434 256.347981
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p616ec69e2e) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 380.567308 256.358563
L 405.193182 256.358563
L 405.193182 256.197712
L 380.567308 256.197712
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_16&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 256.358563
L 69.05 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_17&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 256.358563
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_18&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 256.358563
L 421.2 256.358563
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_19&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p616ec69e2e&amp;gt;&amp;lt;rect height=245.558563 width=352.15 x=69.05 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=13) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4351960964740665307bottom&amp;ndash;4351960964740665307common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;103414&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;92.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.01&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5680&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.1&amp;gt;0.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;842&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.5&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;562&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.7&amp;gt;1.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;337&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.1&amp;gt;1.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;332&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.4&amp;gt;2.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;306&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.6&amp;gt;1.6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;294&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.4&amp;gt;1.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;218&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.3&amp;gt;4.3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;211&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=other&amp;gt;&amp;lt;td title=&amp;quot;Other values (3)&amp;quot;&amp;gt;Other values (3)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;251&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.2%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4351960964740665307bottom&amp;ndash;4351960964740665307extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-4351960964740665307extreme_values&amp;ndash;4351960964740665307firstn aria-controls=-4351960964740665307extreme_values&amp;ndash;4351960964740665307firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-4351960964740665307extreme_values&amp;ndash;4351960964740665307lastn aria-controls=-4351960964740665307extreme_values&amp;ndash;4351960964740665307lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-4351960964740665307extreme_values&amp;ndash;4351960964740665307firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;103414&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;92.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.01&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5680&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:5.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.1&amp;gt;0.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;842&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.7%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.5&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;562&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1.1&amp;gt;1.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;332&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-4351960964740665307extreme_values&amp;ndash;4351960964740665307lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=7.8&amp;gt;7.8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;76&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:24.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6.9&amp;gt;6.9&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5.8&amp;gt;5.8&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;170&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:55.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4.3&amp;gt;4.3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;211&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:69.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2.4&amp;gt;2.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;306&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;a class=&amp;quot;anchor-pos anchor-pos-variable&amp;quot; id=pp_var_-2793035224093880385&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;div class=variable&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;p class=h4 title=snow_depth&amp;gt;&amp;lt;a href=#pp_var_-2793035224093880385&amp;gt;snow_depth&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Real number (&amp;amp;Ropf;&amp;lt;sub&amp;gt;&amp;amp;ge;0&amp;lt;/sub&amp;gt;)&amp;lt;/small&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;code&amp;gt;ZEROS&amp;lt;/code&amp;gt;&amp;lt;br&amp;gt;&amp;lt;p class=variable-description&amp;gt;&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;8&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Distinct (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;&amp;lt; 0.1%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Missing (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Infinite (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.0%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1601973374&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;104332&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class=alert&amp;gt;&amp;lt;th&amp;gt;Zeros (%)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;92.8%&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Memory size&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;878.5 KiB&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=162pt version=1.1 viewbox=&amp;quot;0 0 216 162&amp;quot; width=216pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:34.009357&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 162
L 216 162
L 216 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 10.8 133.275379
L 205.2 133.275379
L 205.2 10.8
L 10.8 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.525878 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(78.434969 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.34406 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.253151 150.97019)rotate(-45)scale(0.08 -0.08)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 19.636364 133.275379
L 41.727273 133.275379
L 41.727273 16.632161
L 19.636364 16.632161
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 41.727273 133.275379
L 63.818182 133.275379
L 63.818182 131.032897
L 41.727273 131.032897
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 63.818182 133.275379
L 85.909091 133.275379
L 85.909091 131.83693
L 63.818182 131.83693
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 85.909091 133.275379
L 108 133.275379
L 108 133.275379
L 85.909091 133.275379
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 108 133.275379
L 130.090909 133.275379
L 130.090909 131.995534
L 108 131.995534
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 130.090909 133.275379
L 152.181818 133.275379
L 152.181818 132.562763
L 130.090909 132.562763
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 152.181818 133.275379
L 174.272727 133.275379
L 174.272727 132.083647
L 152.181818 132.083647
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pbafd461604) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 174.272727 133.275379
L 196.363636 133.275379
L 196.363636 132.932839
L 174.272727 132.932839
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 133.275379
L 10.8 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 205.2 133.275379
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 133.275379
L 205.2 133.275379
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 10.8 10.8
L 205.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbafd461604&amp;gt;&amp;lt;rect height=122.475379 width=194.4 x=10.8 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-12 text-right&amp;quot;&amp;gt;&amp;lt;button class=&amp;quot;btn btn-default btn-sm&amp;quot; data-toggle=collapse data-target=&amp;quot;#bottom&amp;ndash;2793035224093880385, #minifreqtable-2793035224093880385&amp;quot; aria-expanded=true aria-controls=collapseExample&amp;gt;Toggle details&amp;lt;/button&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div id=bottom&amp;ndash;2793035224093880385 class=collapse&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-2793035224093880385bottom&amp;ndash;2793035224093880385statistics aria-controls=-2793035224093880385bottom&amp;ndash;2793035224093880385statistics role=tab data-toggle=tab&amp;gt;Statistics&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-2793035224093880385bottom&amp;ndash;2793035224093880385histogram aria-controls=-2793035224093880385bottom&amp;ndash;2793035224093880385histogram role=tab data-toggle=tab&amp;gt;Histogram&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-2793035224093880385bottom&amp;ndash;2793035224093880385common_values aria-controls=-2793035224093880385bottom&amp;ndash;2793035224093880385common_values role=tab data-toggle=tab&amp;gt;Common values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-2793035224093880385bottom&amp;ndash;2793035224093880385extreme_values aria-controls=-2793035224093880385bottom&amp;ndash;2793035224093880385extreme_values role=tab data-toggle=tab&amp;gt;Extreme values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-2793035224093880385bottom&amp;ndash;2793035224093880385statistics&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Quantile statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Minimum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;median&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Q3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;95-th percentile&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Maximum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Range&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Interquartile range (IQR)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=col-sm-6&amp;gt;&amp;lt;p class=h4&amp;gt;Descriptive statistics&amp;lt;/p&amp;gt;&amp;lt;table class=&amp;quot;table table-condensed stats&amp;quot;&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Standard deviation&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.7510636602&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Coefficient of variation (CV)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;4.688365439&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Kurtosis&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;30.19347353&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Mean&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.1601973374&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Median Absolute Deviation (MAD)&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Skewness&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;5.389350324&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Sum&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;18013.71&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Variance&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;0.5640966217&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;Monotocity&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;Not monotonic&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-2793035224093880385bottom&amp;ndash;2793035224093880385histogram&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 432 288&amp;quot; width=432pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:34.055826&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 432 288
L 432 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 69.05 256.358563
L 421.2 256.358563
L 421.2 10.8
L 69.05 10.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.918711 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.274772 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(191.630833 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(244.986893 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(298.342954 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(351.699014 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(405.055075 275.852078)rotate(-45)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(52.989062 259.93747)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 215.771526)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 171.605582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 127.439638)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(30.745312 83.273694)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(25.184375 39.10775)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(18.869219 159.562485)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-70 d=&amp;quot;M 8.203125 0
L 8.203125 71.578125
L 56.5 71.578125
L 56.5 63.140625
L 17.671875 63.140625
L 17.671875 40.96875
L 51.265625 40.96875
L 51.265625 32.515625
L 17.671875 32.515625
L 17.671875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-113 d=&amp;quot;M 39.65625 -19.875
L 39.65625 5.515625
Q 37.59375 2.640625 33.90625 0.734375
Q 30.21875 -1.171875 26.078125 -1.171875
Q 16.84375 -1.171875 10.171875 6.203125
Q 3.515625 13.578125 3.515625 26.421875
Q 3.515625 34.234375 6.21875 40.421875
Q 8.9375 46.625 14.078125 49.828125
Q 19.234375 53.03125 25.390625 53.03125
Q 35.015625 53.03125 40.53125 44.921875
L 40.53125 51.859375
L 48.4375 51.859375
L 48.4375 -19.875
z
M 12.546875 26.078125
Q 12.546875 16.0625 16.75 11.0625
Q 20.953125 6.0625 26.8125 6.0625
Q 32.421875 6.0625 36.46875 10.8125
Q 40.53125 15.578125 40.53125 25.296875
Q 40.53125 35.640625 36.25 40.859375
Q 31.984375 46.09375 26.21875 46.09375
Q 20.515625 46.09375 16.53125 41.234375
Q 12.546875 36.375 12.546875 26.078125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-99 d=&amp;quot;M 40.4375 19
L 49.078125 17.875
Q 47.65625 8.9375 41.8125 3.875
Q 35.984375 -1.171875 27.484375 -1.171875
Q 16.84375 -1.171875 10.375 5.78125
Q 3.90625 12.75 3.90625 25.734375
Q 3.90625 34.125 6.6875 40.421875
Q 9.46875 46.734375 15.15625 49.875
Q 20.84375 53.03125 27.546875 53.03125
Q 35.984375 53.03125 41.359375 48.75
Q 46.734375 44.484375 48.25 36.625
L 39.703125 35.296875
Q 38.484375 40.53125 35.375 43.15625
Q 32.28125 45.796875 27.875 45.796875
Q 21.234375 45.796875 17.078125 41.03125
Q 12.9375 36.28125 12.9375 25.984375
Q 12.9375 15.53125 16.9375 10.796875
Q 20.953125 6.0625 27.390625 6.0625
Q 32.5625 6.0625 36.03125 9.234375
Q 39.5 12.40625 40.4375 19
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-70 /&amp;gt;&amp;lt;use x=61.083984 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=94.384766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=150 xlink:href=#ArialMT-113 /&amp;gt;&amp;lt;use x=205.615234 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=261.230469 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=316.845703 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=372.460938 xlink:href=#ArialMT-99 /&amp;gt;&amp;lt;use x=422.460938 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 85.056818 256.358563
L 125.073864 256.358563
L 125.073864 22.493265
L 85.056818 22.493265
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 125.073864 256.358563
L 165.090909 256.358563
L 165.090909 251.86247
L 125.073864 251.86247
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 165.090909 256.358563
L 205.107955 256.358563
L 205.107955 253.474527
L 165.090909 253.474527
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 205.107955 256.358563
L 245.125 256.358563
L 245.125 256.358563
L 205.107955 256.358563
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 245.125 256.358563
L 285.142045 256.358563
L 285.142045 253.792522
L 245.125 253.792522
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 285.142045 256.358563
L 325.159091 256.358563
L 325.159091 254.929795
L 285.142045 254.929795
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 325.159091 256.358563
L 365.176136 256.358563
L 365.176136 253.969186
L 325.159091 253.969186
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#pba30b89601) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 365.176136 256.358563
L 405.193182 256.358563
L 405.193182 255.671783
L 365.176136 255.671783
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 256.358563
L 69.05 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 421.2 256.358563
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 256.358563
L 421.2 256.358563
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 69.05 10.8
L 421.2 10.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pba30b89601&amp;gt;&amp;lt;rect height=245.558563 width=352.15 x=69.05 y=10.8 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;div class=&amp;quot;caption text-center text-muted&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;Histogram with fixed size bins&amp;lt;/strong&amp;gt; (bins=8) &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-2793035224093880385bottom&amp;ndash;2793035224093880385common_values&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;104332&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;92.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2036&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.01&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1571&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1306&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1162&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5&amp;gt;5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1082&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4&amp;gt;4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;647&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.6%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;311&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:0.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-2793035224093880385bottom&amp;ndash;2793035224093880385extreme_values&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#-2793035224093880385extreme_values&amp;ndash;2793035224093880385firstn aria-controls=-2793035224093880385extreme_values&amp;ndash;2793035224093880385firstn role=tab data-toggle=tab&amp;gt;Minimum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#-2793035224093880385extreme_values&amp;ndash;2793035224093880385lastn aria-controls=-2793035224093880385extreme_values&amp;ndash;2793035224093880385lastn role=tab data-toggle=tab&amp;gt;Maximum 5 values&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=-2793035224093880385extreme_values&amp;ndash;2793035224093880385firstn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0&amp;gt;0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;104332&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;92.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=0.01&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1571&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.4%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=1&amp;gt;1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2036&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.8%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:2.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1306&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.3%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1162&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:1.1%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=-2793035224093880385extreme_values&amp;ndash;2793035224093880385lastn&amp;gt;&amp;lt;table class=&amp;quot;freq table table-hover table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Value&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Count&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Frequency (%)&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;amp;nbsp;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=6&amp;gt;6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;311&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.3%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:23.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=5&amp;gt;5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1082&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:82.8%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=4&amp;gt;4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;647&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.6%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:49.5%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=3&amp;gt;3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1162&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.0%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:89.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr class&amp;gt;&amp;lt;td title=2&amp;gt;2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1306&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;1.2%&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;&amp;lt;div class=bar style=width:100.0%&amp;gt;&amp;amp;nbsp;&amp;lt;/div&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=interactions&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Interactions&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot;&amp;gt;&amp;lt;div class=col-sm-2&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions-interactions_winddir aria-controls=interactions-interactions_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_windspeed aria-controls=interactions-interactions_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_windgust aria-controls=interactions-interactions_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_visib aria-controls=interactions-interactions_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_tempmax aria-controls=interactions-interactions_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_tempmin aria-controls=interactions-interactions_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_tempave aria-controls=interactions-interactions_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_tempdeparture aria-controls=interactions-interactions_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_ppt aria-controls=interactions-interactions_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_newsnow aria-controls=interactions-interactions_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions-interactions_snowdepth aria-controls=interactions-interactions_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-10&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions-interactions_winddir&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_winddir-interactions_winddir_winddir aria-controls=interactions_winddir-interactions_winddir_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_windspeed aria-controls=interactions_winddir-interactions_winddir_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_windgust aria-controls=interactions_winddir-interactions_winddir_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_visib aria-controls=interactions_winddir-interactions_winddir_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_tempmax aria-controls=interactions_winddir-interactions_winddir_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_tempmin aria-controls=interactions_winddir-interactions_winddir_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_tempave aria-controls=interactions_winddir-interactions_winddir_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_tempdeparture aria-controls=interactions_winddir-interactions_winddir_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_ppt aria-controls=interactions_winddir-interactions_winddir_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_newsnow aria-controls=interactions_winddir-interactions_winddir_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_winddir-interactions_winddir_snowdepth aria-controls=interactions_winddir-interactions_winddir_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_winddir-interactions_winddir_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.068751&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_25f31e3605 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=-0 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=54.109091 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=108.218181 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=135.272727 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=162.327272 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=189.381818 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=216.436363 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=243.490909 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=270.545454 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#508cc0;stroke:#508cc0; x=297.6 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=351.709091 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_25f31e3605 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=405.818181 xlink:href=#C0_0_25f31e3605 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=13.527272 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=40.581818 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=67.636363 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=94.690909 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=121.745454 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=148.8 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=175.854545 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=229.963636 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=257.018181 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=284.072727 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=311.127272 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=338.181818 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=365.236363 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_25f31e3605 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb9d17078ae)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=392.290909 xlink:href=#C0_0_25f31e3605 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pb9d17078ae&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.161441&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_3688e98254 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-0 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-0 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=27.054545 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=27.054545 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=27.054545 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=54.109091 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=54.109091 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=54.109091 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=81.163636 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=81.163636 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=108.218181 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=135.272727 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=135.272727 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=135.272727 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=162.327272 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=162.327272 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=162.327272 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=189.381818 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=189.381818 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=216.436363 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=216.436363 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=243.490909 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=243.490909 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=243.490909 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=270.545454 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=270.545454 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=270.545454 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=270.545454 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=297.6 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=297.6 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=297.6 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=297.6 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=324.654545 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=324.654545 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=324.654545 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=324.654545 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=351.709091 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=351.709091 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=351.709091 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=351.709091 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=351.709091 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=378.763636 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=378.763636 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=378.763636 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=378.763636 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_3688e98254 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=405.818181 xlink:href=#C0_0_3688e98254 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=405.818181 xlink:href=#C0_0_3688e98254 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=405.818181 xlink:href=#C0_0_3688e98254 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=405.818181 xlink:href=#C0_0_3688e98254 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_3688e98254 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_3688e98254 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_3688e98254 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_3688e98254 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=13.527272 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=13.527272 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=40.581818 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=40.581818 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=67.636363 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=67.636363 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=94.690909 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=94.690909 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=121.745454 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=121.745454 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=121.745454 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=148.8 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=148.8 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=148.8 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=202.909091 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=202.909091 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=229.963636 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=229.963636 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=229.963636 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=257.018181 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=257.018181 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=257.018181 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=257.018181 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=284.072727 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=284.072727 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=284.072727 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=284.072727 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=284.072727 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=311.127272 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=311.127272 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=311.127272 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=311.127272 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=311.127272 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=338.181818 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=338.181818 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=338.181818 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=338.181818 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=365.236363 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=365.236363 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=365.236363 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=365.236363 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=365.236363 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=392.290909 xlink:href=#C0_0_3688e98254 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=392.290909 xlink:href=#C0_0_3688e98254 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=392.290909 xlink:href=#C0_0_3688e98254 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=392.290909 xlink:href=#C0_0_3688e98254 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_3688e98254 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_3688e98254 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_3688e98254 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p474f238884)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_3688e98254 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p474f238884&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.244009&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_dbe44b7553 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-0 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-0 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=297.6 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=297.6 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=297.6 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=297.6 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_dbe44b7553 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=148.8 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=148.8 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=148.8 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc2419150c9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_dbe44b7553 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pc2419150c9&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.320971&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_090e55abbb d=&amp;quot;M 105.818182 -53.847561
L 105.818182 -65.172561
L 92.290909 -70.835061
L 78.763637 -65.172561
L 78.763637 -53.847561
L 92.290909 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=-0 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=27.054545 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=54.109091 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=81.163636 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=108.218181 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=135.272727 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=162.327272 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=189.381818 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=216.436363 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=243.490909 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=243.490909 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=270.545454 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=297.6 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=297.6 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=297.6 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=324.654545 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=324.654545 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=351.709091 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=351.709091 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=378.763636 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=378.763636 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=405.818181 xlink:href=#C0_0_090e55abbb y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_090e55abbb y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=405.818181 xlink:href=#C0_0_090e55abbb y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=13.527272 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_090e55abbb y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3f509f140e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_090e55abbb y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p3f509f140e&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.396978&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ebfe3e9b36 d=&amp;quot;M 105.818182 11.382627
L 105.818182 0.057627
L 92.290909 -5.604873
L 78.763637 0.057627
L 78.763637 11.382627
L 92.290909 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#4d8abf;stroke:#4d8abf; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=243.490909 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=270.545454 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=297.6 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=324.654545 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ebfe3e9b36 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#357bb8;stroke:#357bb8; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=40.581818 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=67.636363 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=202.909091 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=229.963636 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=257.018181 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=284.072727 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=311.127272 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=338.181818 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=365.236363 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa88d7803db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=392.290909 xlink:href=#C0_0_ebfe3e9b36 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pa88d7803db&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.475732&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_336adcb8ad d=&amp;quot;M 105.818182 -7.249038
L 105.818182 -18.574038
L 92.290909 -24.236538
L 78.763637 -18.574038
L 78.763637 -7.249038
L 92.290909 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=-0 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=-0 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-0 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=-0 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=-0 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=-0 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=-0 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=27.054545 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=27.054545 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=27.054545 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=27.054545 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=27.054545 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=27.054545 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=27.054545 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=54.109091 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=54.109091 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=54.109091 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=54.109091 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=54.109091 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=54.109091 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=81.163636 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=81.163636 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=81.163636 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=81.163636 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=81.163636 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=108.218181 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=108.218181 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=108.218181 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=108.218181 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=135.272727 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=135.272727 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=135.272727 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=135.272727 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=135.272727 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=135.272727 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=162.327272 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=162.327272 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=162.327272 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=162.327272 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=162.327272 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=162.327272 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=189.381818 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=189.381818 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=189.381818 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=189.381818 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=189.381818 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=189.381818 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=216.436363 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=216.436363 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=216.436363 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=216.436363 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=243.490909 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=243.490909 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=243.490909 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=243.490909 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=243.490909 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=243.490909 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=243.490909 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=270.545454 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=270.545454 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=270.545454 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=270.545454 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=270.545454 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=270.545454 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=270.545454 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=270.545454 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=270.545454 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=297.6 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=297.6 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a2c0da;stroke:#a2c0da; x=297.6 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=297.6 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=297.6 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=297.6 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=297.6 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=297.6 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=297.6 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=324.654545 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=324.654545 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=324.654545 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=324.654545 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=324.654545 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=324.654545 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=324.654545 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=324.654545 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=324.654545 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=351.709091 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=351.709091 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=351.709091 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=351.709091 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=351.709091 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=351.709091 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=351.709091 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=351.709091 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=351.709091 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=378.763636 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=378.763636 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=378.763636 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=378.763636 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=378.763636 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=378.763636 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=378.763636 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=378.763636 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=378.763636 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_336adcb8ad y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=405.818181 xlink:href=#C0_0_336adcb8ad y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=405.818181 xlink:href=#C0_0_336adcb8ad y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=405.818181 xlink:href=#C0_0_336adcb8ad y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=405.818181 xlink:href=#C0_0_336adcb8ad y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=405.818181 xlink:href=#C0_0_336adcb8ad y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=405.818181 xlink:href=#C0_0_336adcb8ad y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=405.818181 xlink:href=#C0_0_336adcb8ad y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_336adcb8ad y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=13.527272 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=13.527272 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=13.527272 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=13.527272 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=13.527272 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#6499c6;stroke:#6499c6; x=13.527272 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=13.527272 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=40.581818 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=40.581818 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=40.581818 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=40.581818 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=40.581818 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=40.581818 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=67.636363 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=67.636363 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=67.636363 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=67.636363 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=67.636363 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=94.690909 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=94.690909 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=94.690909 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=94.690909 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=94.690909 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=121.745454 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=121.745454 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=121.745454 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=121.745454 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=121.745454 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=121.745454 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=148.8 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=148.8 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=148.8 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=148.8 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=148.8 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=148.8 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=175.854545 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=175.854545 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=175.854545 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=175.854545 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=175.854545 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=175.854545 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=175.854545 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=202.909091 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=202.909091 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=202.909091 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=202.909091 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=202.909091 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=202.909091 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=229.963636 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=229.963636 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=229.963636 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=229.963636 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=229.963636 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=229.963636 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=229.963636 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=257.018181 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=257.018181 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=257.018181 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=257.018181 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=257.018181 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=257.018181 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=257.018181 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=257.018181 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=284.072727 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=284.072727 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=284.072727 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=284.072727 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=284.072727 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=284.072727 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=284.072727 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=284.072727 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=311.127272 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=311.127272 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=311.127272 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=311.127272 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=311.127272 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=311.127272 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=311.127272 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=311.127272 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=338.181818 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=338.181818 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=338.181818 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=338.181818 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=338.181818 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=338.181818 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=338.181818 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=338.181818 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=365.236363 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=365.236363 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=365.236363 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=365.236363 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=365.236363 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=365.236363 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=365.236363 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=365.236363 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_336adcb8ad y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=392.290909 xlink:href=#C0_0_336adcb8ad y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=392.290909 xlink:href=#C0_0_336adcb8ad y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=392.290909 xlink:href=#C0_0_336adcb8ad y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=392.290909 xlink:href=#C0_0_336adcb8ad y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=392.290909 xlink:href=#C0_0_336adcb8ad y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=392.290909 xlink:href=#C0_0_336adcb8ad y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d97c70d92)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=392.290909 xlink:href=#C0_0_336adcb8ad y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5d97c70d92&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.554671&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_6b734291ab d=&amp;quot;M 105.818182 3.823204
L 105.818182 -7.501796
L 92.290909 -13.164296
L 78.763637 -7.501796
L 78.763637 3.823204
L 92.290909 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-0 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-0 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=-0 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=-0 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=-0 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=-0 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=-0 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=27.054545 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#5a93c3;stroke:#5a93c3; x=27.054545 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=27.054545 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=27.054545 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=27.054545 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=27.054545 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=54.109091 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=54.109091 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=54.109091 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=54.109091 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=54.109091 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=54.109091 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=81.163636 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=81.163636 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=81.163636 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=81.163636 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=81.163636 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=81.163636 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=108.218181 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=108.218181 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=108.218181 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=108.218181 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=108.218181 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=135.272727 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=135.272727 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=135.272727 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=135.272727 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=135.272727 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=162.327272 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=162.327272 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=162.327272 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=162.327272 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=162.327272 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=189.381818 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=189.381818 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=189.381818 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=189.381818 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=189.381818 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=216.436363 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=216.436363 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=216.436363 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=216.436363 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=216.436363 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=243.490909 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=243.490909 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=243.490909 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=243.490909 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=243.490909 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=243.490909 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=243.490909 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=270.545454 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=270.545454 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=270.545454 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=270.545454 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=270.545454 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=270.545454 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=270.545454 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=270.545454 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=270.545454 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=297.6 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=297.6 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=297.6 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=297.6 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=297.6 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=297.6 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=297.6 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=297.6 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=297.6 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=324.654545 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=324.654545 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=324.654545 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=324.654545 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=324.654545 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=324.654545 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=324.654545 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=324.654545 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=324.654545 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=351.709091 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=351.709091 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=351.709091 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=351.709091 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=351.709091 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=351.709091 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=351.709091 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=351.709091 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=351.709091 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=378.763636 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=378.763636 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=378.763636 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=378.763636 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=378.763636 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=378.763636 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=378.763636 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=378.763636 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6b734291ab y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_6b734291ab y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=405.818181 xlink:href=#C0_0_6b734291ab y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=405.818181 xlink:href=#C0_0_6b734291ab y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=405.818181 xlink:href=#C0_0_6b734291ab y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=405.818181 xlink:href=#C0_0_6b734291ab y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=405.818181 xlink:href=#C0_0_6b734291ab y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=405.818181 xlink:href=#C0_0_6b734291ab y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6b734291ab y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=13.527272 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=13.527272 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=13.527272 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=13.527272 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=13.527272 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=13.527272 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=13.527272 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=13.527272 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=40.581818 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=40.581818 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=40.581818 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=40.581818 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=40.581818 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=67.636363 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=67.636363 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=67.636363 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=67.636363 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=67.636363 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=94.690909 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=94.690909 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=94.690909 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=94.690909 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=94.690909 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=121.745454 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=121.745454 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=121.745454 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=121.745454 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=121.745454 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=148.8 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=148.8 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=148.8 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=148.8 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=148.8 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=148.8 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=175.854545 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=175.854545 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=175.854545 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=175.854545 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=175.854545 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=175.854545 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=202.909091 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=202.909091 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=202.909091 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=202.909091 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=202.909091 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=202.909091 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=229.963636 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=229.963636 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=229.963636 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=229.963636 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=229.963636 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=229.963636 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=229.963636 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=229.963636 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=257.018181 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=257.018181 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#699cc8;stroke:#699cc8; x=257.018181 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=257.018181 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=257.018181 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=257.018181 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#528ec1;stroke:#528ec1; x=257.018181 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=257.018181 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=284.072727 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=284.072727 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=284.072727 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=284.072727 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=284.072727 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=284.072727 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=284.072727 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=284.072727 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=311.127272 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=311.127272 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=311.127272 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=311.127272 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=311.127272 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=311.127272 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=311.127272 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=311.127272 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=338.181818 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=338.181818 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=338.181818 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=338.181818 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=338.181818 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=338.181818 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=338.181818 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=338.181818 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=365.236363 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=365.236363 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=365.236363 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=365.236363 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=365.236363 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=365.236363 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=365.236363 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=365.236363 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=392.290909 xlink:href=#C0_0_6b734291ab y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=392.290909 xlink:href=#C0_0_6b734291ab y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=392.290909 xlink:href=#C0_0_6b734291ab y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=392.290909 xlink:href=#C0_0_6b734291ab y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=392.290909 xlink:href=#C0_0_6b734291ab y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=392.290909 xlink:href=#C0_0_6b734291ab y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=392.290909 xlink:href=#C0_0_6b734291ab y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9e92608e6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=392.290909 xlink:href=#C0_0_6b734291ab y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd9e92608e6&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.637940&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_cd84560b8f d=&amp;quot;M 105.818182 -171.523764
L 105.818182 -182.848764
L 92.290909 -188.511264
L 78.763637 -182.848764
L 78.763637 -171.523764
L 92.290909 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=-0 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=-0 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=-0 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-0 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=27.054545 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=27.054545 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#6499c6;stroke:#6499c6; x=27.054545 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=27.054545 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=27.054545 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=54.109091 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=54.109091 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=54.109091 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=54.109091 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=54.109091 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=81.163636 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=81.163636 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=81.163636 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=81.163636 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=108.218181 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=108.218181 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=108.218181 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=108.218181 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=108.218181 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=135.272727 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=135.272727 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=135.272727 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=135.272727 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=162.327272 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=162.327272 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=162.327272 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=162.327272 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=162.327272 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=189.381818 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=189.381818 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=189.381818 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=189.381818 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=189.381818 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=189.381818 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=189.381818 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=216.436363 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=216.436363 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=216.436363 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=216.436363 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=243.490909 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=243.490909 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=243.490909 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=243.490909 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=243.490909 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=243.490909 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=270.545454 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=270.545454 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=270.545454 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=270.545454 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=270.545454 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=270.545454 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=297.6 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=297.6 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=297.6 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=297.6 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=297.6 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=297.6 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=297.6 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=324.654545 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=324.654545 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=324.654545 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=324.654545 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=324.654545 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=324.654545 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=324.654545 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=351.709091 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=351.709091 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=351.709091 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=351.709091 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=351.709091 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=351.709091 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=351.709091 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=378.763636 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=378.763636 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=378.763636 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=378.763636 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=378.763636 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=378.763636 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=378.763636 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cd84560b8f y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cd84560b8f y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=405.818181 xlink:href=#C0_0_cd84560b8f y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=405.818181 xlink:href=#C0_0_cd84560b8f y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=405.818181 xlink:href=#C0_0_cd84560b8f y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=405.818181 xlink:href=#C0_0_cd84560b8f y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=405.818181 xlink:href=#C0_0_cd84560b8f y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cd84560b8f y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cd84560b8f y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=13.527272 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=13.527272 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=13.527272 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=13.527272 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=13.527272 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=40.581818 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=40.581818 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=40.581818 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=40.581818 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=40.581818 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=67.636363 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=67.636363 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=67.636363 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=67.636363 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=67.636363 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=94.690909 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=94.690909 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=94.690909 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=94.690909 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=121.745454 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=121.745454 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=121.745454 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=148.8 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=148.8 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=148.8 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=148.8 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=148.8 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=148.8 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=175.854545 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=175.854545 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=175.854545 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=175.854545 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=175.854545 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=202.909091 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=202.909091 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=202.909091 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=202.909091 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=202.909091 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=202.909091 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=229.963636 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=229.963636 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=229.963636 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=229.963636 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=229.963636 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=229.963636 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=229.963636 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=257.018181 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=257.018181 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=257.018181 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=257.018181 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=257.018181 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=257.018181 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=257.018181 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=257.018181 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=284.072727 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=284.072727 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=284.072727 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=284.072727 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=284.072727 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=284.072727 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=284.072727 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=284.072727 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=311.127272 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=311.127272 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=311.127272 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=311.127272 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=311.127272 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=311.127272 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=311.127272 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=311.127272 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=338.181818 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=338.181818 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=338.181818 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=338.181818 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=338.181818 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=338.181818 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=338.181818 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=338.181818 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=365.236363 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=365.236363 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=365.236363 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=365.236363 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=365.236363 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=365.236363 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=365.236363 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=392.290909 xlink:href=#C0_0_cd84560b8f y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=392.290909 xlink:href=#C0_0_cd84560b8f y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=392.290909 xlink:href=#C0_0_cd84560b8f y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=392.290909 xlink:href=#C0_0_cd84560b8f y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=392.290909 xlink:href=#C0_0_cd84560b8f y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=392.290909 xlink:href=#C0_0_cd84560b8f y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_cd84560b8f y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe092554f83)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cd84560b8f y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pe092554f83&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.716193&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_b6100d3242 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=-0 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=27.054545 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=27.054545 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=54.109091 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=81.163636 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=108.218181 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=135.272727 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=162.327272 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=189.381818 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=216.436363 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=243.490909 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=243.490909 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=270.545454 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=270.545454 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=297.6 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=324.654545 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=351.709091 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=378.763636 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=405.818181 xlink:href=#C0_0_b6100d3242 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_b6100d3242 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=13.527272 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=13.527272 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=40.581818 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=67.636363 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=148.8 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=202.909091 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=257.018181 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=257.018181 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=284.072727 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=392.290909 xlink:href=#C0_0_b6100d3242 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=392.290909 xlink:href=#C0_0_b6100d3242 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_b6100d3242 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_b6100d3242 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_b6100d3242 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_b6100d3242 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_b6100d3242 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#ped9daafa9e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_b6100d3242 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=ped9daafa9e&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.797743&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_c46e84da31 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=-0 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=27.054545 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=81.163636 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=108.218181 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=135.272727 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=162.327272 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=189.381818 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=216.436363 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=243.490909 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=270.545454 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=297.6 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=324.654545 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=351.709091 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=378.763636 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=405.818181 xlink:href=#C0_0_c46e84da31 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c46e84da31 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2640eb84b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c46e84da31 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p2640eb84b3&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_winddir-interactions_winddir_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.878024&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.093608 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.676776 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(253.040412 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(309.404048 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.767685 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(422.131321 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(478.494957 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(274.718516 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_fd86022c33 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=-0 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=27.054545 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=81.163636 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=108.218181 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=135.272727 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=162.327272 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=216.436363 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=243.490909 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=270.545454 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=297.6 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=324.654545 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=351.709091 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=378.763636 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=405.818181 xlink:href=#C0_0_fd86022c33 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fd86022c33 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=257.018181 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=284.072727 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=311.127272 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=311.127272 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=311.127272 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=311.127272 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=338.181818 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p31a16f2fa0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fd86022c33 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p31a16f2fa0&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_windspeed&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_windspeed-interactions_windspeed_winddir aria-controls=interactions_windspeed-interactions_windspeed_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_windspeed aria-controls=interactions_windspeed-interactions_windspeed_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_windgust aria-controls=interactions_windspeed-interactions_windspeed_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_visib aria-controls=interactions_windspeed-interactions_windspeed_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_tempmax aria-controls=interactions_windspeed-interactions_windspeed_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_tempmin aria-controls=interactions_windspeed-interactions_windspeed_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_tempave aria-controls=interactions_windspeed-interactions_windspeed_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_tempdeparture aria-controls=interactions_windspeed-interactions_windspeed_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_ppt aria-controls=interactions_windspeed-interactions_windspeed_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_newsnow aria-controls=interactions_windspeed-interactions_windspeed_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windspeed-interactions_windspeed_snowdepth aria-controls=interactions_windspeed-interactions_windspeed_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_windspeed-interactions_windspeed_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:22.956130&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_fc36176072 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=27.054545 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=27.054545 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=27.054545 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=27.054545 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=54.109091 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=54.109091 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=54.109091 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=54.109091 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=54.109091 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=54.109091 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=54.109091 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=54.109091 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=54.109091 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=81.163636 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=81.163636 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=81.163636 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=81.163636 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=81.163636 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=81.163636 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=81.163636 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=81.163636 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=81.163636 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=108.218181 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=108.218181 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=108.218181 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=108.218181 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=108.218181 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=108.218181 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=108.218181 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=108.218181 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=108.218181 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=135.272727 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=135.272727 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=135.272727 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=135.272727 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=135.272727 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=135.272727 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=135.272727 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=135.272727 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=135.272727 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=162.327272 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=162.327272 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=162.327272 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=162.327272 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=162.327272 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=162.327272 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=162.327272 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=189.381818 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=189.381818 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=189.381818 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=216.436363 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=216.436363 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=243.490909 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc36176072 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=40.581818 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=40.581818 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=40.581818 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=40.581818 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=40.581818 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=40.581818 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=67.636363 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=67.636363 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=67.636363 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=67.636363 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=67.636363 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=67.636363 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=67.636363 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=67.636363 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=94.690909 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=94.690909 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=94.690909 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=94.690909 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=94.690909 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=94.690909 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=94.690909 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=94.690909 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=121.745454 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=121.745454 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=121.745454 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=121.745454 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=121.745454 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=121.745454 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=121.745454 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=121.745454 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=148.8 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=148.8 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=148.8 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=148.8 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=148.8 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=148.8 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=175.854545 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=175.854545 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=175.854545 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=175.854545 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=202.909091 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=202.909091 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=202.909091 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=229.963636 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p870a3b3daf)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc36176072 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p870a3b3daf&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.037746&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_51dbc9457f d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=-0 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=54.109091 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#3c80ba;stroke:#3c80ba; x=108.218181 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=135.272727 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=162.327272 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_51dbc9457f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=40.581818 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=121.745454 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=175.854545 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=229.963636 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p23ffb99629)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_51dbc9457f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p23ffb99629&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.119530&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_41a0157266 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=-0 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=54.109091 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#3c80ba;stroke:#3c80ba; x=108.218181 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=135.272727 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=162.327272 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_41a0157266 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=40.581818 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=67.636363 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=94.690909 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=121.745454 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=175.854545 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=229.963636 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa998464e69)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_41a0157266 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pa998464e69&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.201273&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_75b472a4f2 d=&amp;quot;M 105.818182 -53.847561
L 105.818182 -65.172561
L 92.290909 -70.835061
L 78.763637 -65.172561
L 78.763637 -53.847561
L 92.290909 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-0 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=27.054545 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=54.109091 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=81.163636 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=135.272727 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=162.327272 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=189.381818 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=216.436363 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_75b472a4f2 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p2f20f4ca29)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_75b472a4f2 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p2f20f4ca29&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.387922&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_eb3fff007a d=&amp;quot;M 105.818182 11.382627
L 105.818182 0.057627
L 92.290909 -5.604873
L 78.763637 0.057627
L 78.763637 11.382627
L 92.290909 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-0 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=-0 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=-0 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-0 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=-0 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=-0 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=27.054545 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=27.054545 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=27.054545 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=27.054545 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=54.109091 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=54.109091 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=54.109091 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=54.109091 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=54.109091 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=54.109091 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=54.109091 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=81.163636 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=81.163636 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=81.163636 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=81.163636 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=81.163636 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=81.163636 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=81.163636 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=81.163636 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=108.218181 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=108.218181 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=108.218181 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=108.218181 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=108.218181 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=108.218181 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=108.218181 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=135.272727 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=135.272727 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=135.272727 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=135.272727 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=135.272727 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=135.272727 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=135.272727 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=135.272727 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=162.327272 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=162.327272 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=162.327272 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=162.327272 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=162.327272 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=162.327272 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=162.327272 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=162.327272 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=189.381818 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=189.381818 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=189.381818 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=189.381818 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=189.381818 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=189.381818 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=189.381818 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=189.381818 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=216.436363 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=216.436363 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=216.436363 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=216.436363 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=243.490909 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=243.490909 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_eb3fff007a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=13.527272 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=13.527272 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=13.527272 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=13.527272 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=40.581818 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=40.581818 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=40.581818 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=40.581818 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=40.581818 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#5b93c4;stroke:#5b93c4; x=40.581818 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=40.581818 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=67.636363 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=67.636363 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=67.636363 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=67.636363 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=67.636363 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=67.636363 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=67.636363 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=67.636363 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=94.690909 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=94.690909 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=94.690909 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=94.690909 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=94.690909 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=94.690909 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=94.690909 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=94.690909 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=121.745454 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=121.745454 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=121.745454 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=121.745454 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=121.745454 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=121.745454 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=121.745454 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=121.745454 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=148.8 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=148.8 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=148.8 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=148.8 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=148.8 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=148.8 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=148.8 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=148.8 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=175.854545 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=175.854545 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=175.854545 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=175.854545 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=175.854545 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=202.909091 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=202.909091 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=202.909091 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=202.909091 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=202.909091 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=202.909091 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1c099a6976)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_eb3fff007a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1c099a6976&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.472857&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_95fded837d d=&amp;quot;M 105.818182 -7.249038
L 105.818182 -18.574038
L 92.290909 -24.236538
L 78.763637 -18.574038
L 78.763637 -7.249038
L 92.290909 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-0 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=-0 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=-0 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-0 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=-0 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-0 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-0 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=27.054545 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=27.054545 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=27.054545 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=27.054545 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=27.054545 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=54.109091 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=54.109091 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=54.109091 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=54.109091 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=54.109091 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=54.109091 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=54.109091 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=54.109091 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=54.109091 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=81.163636 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=81.163636 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=81.163636 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=81.163636 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=81.163636 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=81.163636 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=81.163636 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#6297c6;stroke:#6297c6; x=81.163636 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=81.163636 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=108.218181 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=108.218181 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=108.218181 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=108.218181 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=108.218181 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=108.218181 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=108.218181 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#5a93c3;stroke:#5a93c3; x=108.218181 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=108.218181 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=135.272727 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=135.272727 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=135.272727 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=135.272727 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=135.272727 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=135.272727 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=135.272727 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=135.272727 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=135.272727 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=162.327272 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=162.327272 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=162.327272 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=162.327272 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=162.327272 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=162.327272 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=162.327272 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=162.327272 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=189.381818 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=189.381818 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=189.381818 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=189.381818 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=189.381818 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=189.381818 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=189.381818 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=216.436363 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=216.436363 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=216.436363 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=216.436363 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=243.490909 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_95fded837d y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=13.527272 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=13.527272 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=13.527272 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=13.527272 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=13.527272 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=40.581818 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=40.581818 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=40.581818 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=40.581818 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=40.581818 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=40.581818 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=67.636363 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=67.636363 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=67.636363 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=67.636363 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=67.636363 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=67.636363 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#6197c5;stroke:#6197c5; x=67.636363 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=67.636363 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=94.690909 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=94.690909 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=94.690909 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=94.690909 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=94.690909 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=94.690909 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#3b7fba;stroke:#3b7fba; x=94.690909 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=94.690909 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=121.745454 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=121.745454 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=121.745454 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=121.745454 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=121.745454 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=121.745454 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=121.745454 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=121.745454 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=148.8 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=148.8 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=148.8 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=148.8 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=148.8 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=148.8 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=148.8 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=148.8 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=175.854545 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=175.854545 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=175.854545 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=175.854545 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=175.854545 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=202.909091 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=202.909091 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=202.909091 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=202.909091 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=202.909091 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=202.909091 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=229.963636 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=257.018181 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p401e2e6f78)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_95fded837d y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p401e2e6f78&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.555498&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_55d941bbfc d=&amp;quot;M 105.818182 3.823204
L 105.818182 -7.501796
L 92.290909 -13.164296
L 78.763637 -7.501796
L 78.763637 3.823204
L 92.290909 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-0 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-0 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=-0 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-0 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=-0 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=-0 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=27.054545 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=27.054545 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=27.054545 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=27.054545 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=27.054545 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=54.109091 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=54.109091 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=54.109091 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=54.109091 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=54.109091 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#3d80ba;stroke:#3d80ba; x=54.109091 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=54.109091 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=54.109091 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=81.163636 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=81.163636 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=81.163636 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=81.163636 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=81.163636 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=81.163636 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#397eb9;stroke:#397eb9; x=81.163636 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#4e8bc0;stroke:#4e8bc0; x=81.163636 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=81.163636 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=108.218181 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=108.218181 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=108.218181 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#6197c5;stroke:#6197c5; x=108.218181 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=108.218181 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=108.218181 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=108.218181 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=108.218181 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=135.272727 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=135.272727 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=135.272727 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=135.272727 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=135.272727 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=135.272727 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=135.272727 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=135.272727 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=135.272727 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=162.327272 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=162.327272 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=162.327272 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=162.327272 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=162.327272 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=162.327272 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=162.327272 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=162.327272 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=189.381818 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=189.381818 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=189.381818 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=189.381818 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=189.381818 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=189.381818 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=189.381818 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=216.436363 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=216.436363 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=216.436363 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_55d941bbfc y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=13.527272 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=13.527272 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=13.527272 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=13.527272 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=13.527272 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=40.581818 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=40.581818 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=40.581818 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=40.581818 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=40.581818 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=40.581818 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=40.581818 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=67.636363 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=67.636363 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=67.636363 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=67.636363 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=67.636363 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=67.636363 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=67.636363 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=67.636363 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=94.690909 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=94.690909 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=94.690909 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=94.690909 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#5a93c3;stroke:#5a93c3; x=94.690909 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#699cc8;stroke:#699cc8; x=94.690909 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#377db8;stroke:#377db8; x=94.690909 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=94.690909 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=121.745454 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=121.745454 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=121.745454 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=121.745454 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=121.745454 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=121.745454 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=121.745454 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=121.745454 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=148.8 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=148.8 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=148.8 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=148.8 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=148.8 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=148.8 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=148.8 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=148.8 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=175.854545 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=175.854545 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=175.854545 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=175.854545 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=202.909091 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=202.909091 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=202.909091 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=202.909091 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=202.909091 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=202.909091 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=229.963636 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=229.963636 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=229.963636 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=257.018181 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p13df11a0bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_55d941bbfc y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p13df11a0bb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.641431&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_067c5b3689 d=&amp;quot;M 105.818182 -171.523764
L 105.818182 -182.848764
L 92.290909 -188.511264
L 78.763637 -182.848764
L 78.763637 -171.523764
L 92.290909 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-0 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=-0 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=-0 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=-0 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=-0 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=27.054545 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=27.054545 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=27.054545 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=54.109091 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#3a7fb9;stroke:#3a7fb9; x=54.109091 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=54.109091 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=54.109091 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=54.109091 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=54.109091 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=81.163636 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=81.163636 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=81.163636 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#5f96c5;stroke:#5f96c5; x=81.163636 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=81.163636 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=81.163636 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=108.218181 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=108.218181 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=108.218181 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=108.218181 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=108.218181 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=108.218181 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=108.218181 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=108.218181 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=135.272727 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=135.272727 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=135.272727 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=135.272727 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=135.272727 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=135.272727 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=135.272727 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=162.327272 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=162.327272 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=162.327272 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=162.327272 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=162.327272 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=162.327272 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=162.327272 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=189.381818 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=189.381818 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=189.381818 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=189.381818 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=189.381818 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=216.436363 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=243.490909 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_067c5b3689 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=13.527272 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=13.527272 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=13.527272 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=13.527272 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=13.527272 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=40.581818 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=40.581818 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=40.581818 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=40.581818 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=40.581818 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=40.581818 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=67.636363 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=67.636363 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=67.636363 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#3a7fb9;stroke:#3a7fb9; x=67.636363 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=67.636363 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=67.636363 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=67.636363 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=94.690909 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=94.690909 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#4b89bf;stroke:#4b89bf; x=94.690909 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=94.690909 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=94.690909 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=94.690909 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=94.690909 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=94.690909 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=121.745454 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=121.745454 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=121.745454 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=121.745454 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=121.745454 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=121.745454 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=121.745454 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=121.745454 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=148.8 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=148.8 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=148.8 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=148.8 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=148.8 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=148.8 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=148.8 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=175.854545 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=175.854545 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=175.854545 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=175.854545 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=175.854545 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=202.909091 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=202.909091 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=202.909091 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=202.909091 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=202.909091 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=229.963636 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=229.963636 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p91fa648952)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_067c5b3689 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p91fa648952&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.728696&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_07a60c303a d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=-0 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=27.054545 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=54.109091 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#5690c2;stroke:#5690c2; x=81.163636 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=81.163636 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=108.218181 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=135.272727 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=162.327272 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=189.381818 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=216.436363 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_07a60c303a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=40.581818 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=67.636363 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=94.690909 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=121.745454 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=121.745454 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=148.8 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6f0d1f4eae)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_07a60c303a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p6f0d1f4eae&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.815854&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_1358bb0f6e d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1358bb0f6e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p08c19374cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1358bb0f6e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p08c19374cb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windspeed-interactions_windspeed_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.899283&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.370174 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.449439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(242.309173 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(294.168907 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.02864 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(397.888374 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(449.748107 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(501.607841 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.846328 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_321f02bc3e d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=54.109091 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=81.163636 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=135.272727 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=189.381818 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=216.436363 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_321f02bc3e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4f0937cd28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_321f02bc3e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4f0937cd28&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_windgust&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_windgust-interactions_windgust_winddir aria-controls=interactions_windgust-interactions_windgust_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_windspeed aria-controls=interactions_windgust-interactions_windgust_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_windgust aria-controls=interactions_windgust-interactions_windgust_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_visib aria-controls=interactions_windgust-interactions_windgust_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_tempmax aria-controls=interactions_windgust-interactions_windgust_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_tempmin aria-controls=interactions_windgust-interactions_windgust_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_tempave aria-controls=interactions_windgust-interactions_windgust_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_tempdeparture aria-controls=interactions_windgust-interactions_windgust_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_ppt aria-controls=interactions_windgust-interactions_windgust_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_newsnow aria-controls=interactions_windgust-interactions_windgust_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_windgust-interactions_windgust_snowdepth aria-controls=interactions_windgust-interactions_windgust_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_windgust-interactions_windgust_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:23.979890&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_bfc8c3fe12 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=27.054545 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=54.109091 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=81.163636 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=108.218181 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=135.272727 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=162.327272 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=189.381818 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bfc8c3fe12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=67.636363 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=94.690909 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=121.745454 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=148.8 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=202.909091 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8f08bdbf41)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bfc8c3fe12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p8f08bdbf41&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.053445&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_09df9227d5 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=-0 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=54.109091 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#3c80ba;stroke:#3c80ba; x=108.218181 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=135.272727 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=162.327272 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_09df9227d5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=40.581818 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=121.745454 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=175.854545 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=229.963636 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa36622a7b3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_09df9227d5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pa36622a7b3&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.128265&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_2124245213 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=-0 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=54.109091 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#3c80ba;stroke:#3c80ba; x=108.218181 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=135.272727 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=162.327272 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_2124245213 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=40.581818 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=67.636363 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=94.690909 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=121.745454 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=175.854545 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=229.963636 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd5276a781a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_2124245213 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd5276a781a&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.196549&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_527d355050 d=&amp;quot;M 105.818182 -53.847561
L 105.818182 -65.172561
L 92.290909 -70.835061
L 78.763637 -65.172561
L 78.763637 -53.847561
L 92.290909 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-0 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=27.054545 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=54.109091 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=81.163636 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=135.272727 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=162.327272 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=189.381818 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=216.436363 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_527d355050 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=40.581818 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#paa24ad5b9b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_527d355050 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=paa24ad5b9b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.267404&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_236f521b70 d=&amp;quot;M 105.818182 11.382627
L 105.818182 0.057627
L 92.290909 -5.604873
L 78.763637 0.057627
L 78.763637 11.382627
L 92.290909 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-0 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=-0 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=-0 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-0 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=-0 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=-0 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=27.054545 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=27.054545 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=27.054545 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=27.054545 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=54.109091 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=54.109091 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=54.109091 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=54.109091 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=54.109091 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=54.109091 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=54.109091 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=81.163636 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=81.163636 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=81.163636 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=81.163636 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=81.163636 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=81.163636 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=81.163636 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=81.163636 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=108.218181 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=108.218181 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=108.218181 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=108.218181 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=108.218181 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=108.218181 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=108.218181 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=135.272727 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=135.272727 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=135.272727 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=135.272727 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=135.272727 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=135.272727 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=135.272727 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=135.272727 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=162.327272 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=162.327272 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=162.327272 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=162.327272 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=162.327272 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=162.327272 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=162.327272 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=162.327272 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=189.381818 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=189.381818 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=189.381818 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=189.381818 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=189.381818 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=189.381818 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=189.381818 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=189.381818 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=216.436363 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=216.436363 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=216.436363 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=216.436363 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=243.490909 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=243.490909 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_236f521b70 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=13.527272 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=13.527272 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=13.527272 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=13.527272 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=40.581818 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=40.581818 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=40.581818 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=40.581818 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=40.581818 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#5b93c4;stroke:#5b93c4; x=40.581818 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=40.581818 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=67.636363 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=67.636363 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=67.636363 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=67.636363 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=67.636363 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=67.636363 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=67.636363 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=67.636363 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=94.690909 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=94.690909 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=94.690909 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=94.690909 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=94.690909 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=94.690909 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=94.690909 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=94.690909 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=121.745454 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=121.745454 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=121.745454 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=121.745454 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=121.745454 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=121.745454 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=121.745454 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=121.745454 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=148.8 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=148.8 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=148.8 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=148.8 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=148.8 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=148.8 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=148.8 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=148.8 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=175.854545 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=175.854545 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=175.854545 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=175.854545 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=175.854545 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=202.909091 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=202.909091 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=202.909091 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=202.909091 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=202.909091 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=202.909091 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb1d281227)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_236f521b70 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbb1d281227&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.342807&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_9f146ed152 d=&amp;quot;M 105.818182 -7.249038
L 105.818182 -18.574038
L 92.290909 -24.236538
L 78.763637 -18.574038
L 78.763637 -7.249038
L 92.290909 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-0 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=-0 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=-0 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-0 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=-0 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-0 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-0 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=27.054545 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=27.054545 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=27.054545 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=27.054545 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=27.054545 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=54.109091 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=54.109091 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=54.109091 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=54.109091 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=54.109091 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=54.109091 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=54.109091 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=54.109091 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=54.109091 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=81.163636 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=81.163636 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=81.163636 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=81.163636 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=81.163636 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=81.163636 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=81.163636 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#6297c6;stroke:#6297c6; x=81.163636 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=81.163636 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=108.218181 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=108.218181 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=108.218181 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=108.218181 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=108.218181 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=108.218181 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=108.218181 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#5a93c3;stroke:#5a93c3; x=108.218181 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=108.218181 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=135.272727 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=135.272727 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=135.272727 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=135.272727 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=135.272727 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=135.272727 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=135.272727 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=135.272727 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=135.272727 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=162.327272 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=162.327272 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=162.327272 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=162.327272 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=162.327272 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=162.327272 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=162.327272 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=162.327272 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=189.381818 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=189.381818 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=189.381818 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=189.381818 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=189.381818 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=189.381818 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=189.381818 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=189.381818 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=216.436363 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=216.436363 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=216.436363 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=216.436363 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=243.490909 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9f146ed152 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=13.527272 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=13.527272 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=13.527272 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=13.527272 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=13.527272 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=40.581818 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=40.581818 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=40.581818 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=40.581818 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=40.581818 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=40.581818 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=67.636363 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=67.636363 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=67.636363 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=67.636363 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=67.636363 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=67.636363 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#6197c5;stroke:#6197c5; x=67.636363 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=67.636363 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=94.690909 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=94.690909 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=94.690909 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=94.690909 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=94.690909 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=94.690909 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#3b7fba;stroke:#3b7fba; x=94.690909 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=94.690909 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=121.745454 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=121.745454 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=121.745454 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=121.745454 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=121.745454 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=121.745454 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=121.745454 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=121.745454 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=148.8 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=148.8 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=148.8 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=148.8 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=148.8 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=148.8 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=148.8 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=148.8 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=175.854545 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=175.854545 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=175.854545 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=175.854545 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=175.854545 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=175.854545 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=202.909091 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=202.909091 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=202.909091 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=202.909091 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=202.909091 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=202.909091 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=229.963636 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=257.018181 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p35b47594ab)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9f146ed152 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p35b47594ab&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.416652&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_f74c02917e d=&amp;quot;M 105.818182 3.823204
L 105.818182 -7.501796
L 92.290909 -13.164296
L 78.763637 -7.501796
L 78.763637 3.823204
L 92.290909 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-0 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-0 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=-0 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-0 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=-0 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=-0 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=27.054545 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=27.054545 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=27.054545 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=27.054545 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=27.054545 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=54.109091 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=54.109091 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=54.109091 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=54.109091 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=54.109091 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#3d80ba;stroke:#3d80ba; x=54.109091 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=54.109091 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=54.109091 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=81.163636 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=81.163636 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=81.163636 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=81.163636 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=81.163636 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=81.163636 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#397eb9;stroke:#397eb9; x=81.163636 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#4e8bc0;stroke:#4e8bc0; x=81.163636 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=81.163636 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=108.218181 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=108.218181 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=108.218181 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#6197c5;stroke:#6197c5; x=108.218181 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=108.218181 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=108.218181 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=108.218181 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=108.218181 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=135.272727 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=135.272727 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=135.272727 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=135.272727 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=135.272727 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=135.272727 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=135.272727 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=135.272727 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=135.272727 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=162.327272 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=162.327272 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=162.327272 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=162.327272 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=162.327272 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=162.327272 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=162.327272 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=162.327272 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=189.381818 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=189.381818 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=189.381818 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=189.381818 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=189.381818 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=189.381818 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=189.381818 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=216.436363 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=216.436363 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=216.436363 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=216.436363 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_f74c02917e y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=13.527272 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=13.527272 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=13.527272 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=13.527272 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=13.527272 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=40.581818 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=40.581818 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=40.581818 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=40.581818 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=40.581818 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=40.581818 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=40.581818 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=67.636363 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=67.636363 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=67.636363 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=67.636363 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=67.636363 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=67.636363 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=67.636363 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=67.636363 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=94.690909 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=94.690909 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=94.690909 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=94.690909 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#5a93c3;stroke:#5a93c3; x=94.690909 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#699cc8;stroke:#699cc8; x=94.690909 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#377db8;stroke:#377db8; x=94.690909 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=94.690909 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=121.745454 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=121.745454 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=121.745454 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=121.745454 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=121.745454 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=121.745454 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=121.745454 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=121.745454 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=148.8 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=148.8 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=148.8 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=148.8 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=148.8 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=148.8 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=148.8 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=148.8 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=175.854545 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=175.854545 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=175.854545 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=175.854545 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=175.854545 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=202.909091 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=202.909091 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=202.909091 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=202.909091 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=202.909091 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=202.909091 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=229.963636 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=229.963636 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=229.963636 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=257.018181 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4834da38fa)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_f74c02917e y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4834da38fa&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.491310&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_99a1226dc9 d=&amp;quot;M 105.818182 -171.523764
L 105.818182 -182.848764
L 92.290909 -188.511264
L 78.763637 -182.848764
L 78.763637 -171.523764
L 92.290909 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-0 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=-0 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=-0 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=-0 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=-0 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#3a7fb9;stroke:#3a7fb9; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=54.109091 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#5f96c5;stroke:#5f96c5; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=108.218181 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_99a1226dc9 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#3a7fb9;stroke:#3a7fb9; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#4b89bf;stroke:#4b89bf; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=94.690909 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=121.745454 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=148.8 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=148.8 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=148.8 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=148.8 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=148.8 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=148.8 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=148.8 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p185a0740eb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_99a1226dc9 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p185a0740eb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.560321&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_76c3972e12 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=-0 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=54.109091 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#5690c2;stroke:#5690c2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=81.163636 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=108.218181 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=108.218181 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=162.327272 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=189.381818 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=216.436363 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_76c3972e12 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=40.581818 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=67.636363 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=94.690909 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=121.745454 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=121.745454 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=148.8 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p438b11eac0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_76c3972e12 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p438b11eac0&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.634879&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_32c4279b91 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=27.054545 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=54.109091 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=135.272727 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=162.327272 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=189.381818 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=216.436363 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32c4279b91 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p88e9aa47cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32c4279b91 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p88e9aa47cd&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_windgust-interactions_windgust_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.710554&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.859682 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(266.989391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(357.119101 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(447.248811 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(270.435391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ce36d434ed d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=54.109091 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=81.163636 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=108.218181 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=135.272727 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=189.381818 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=216.436363 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_ce36d434ed y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p8d8339c960)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_ce36d434ed y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p8d8339c960&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_visib&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_visib-interactions_visib_winddir aria-controls=interactions_visib-interactions_visib_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_windspeed aria-controls=interactions_visib-interactions_visib_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_windgust aria-controls=interactions_visib-interactions_visib_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_visib aria-controls=interactions_visib-interactions_visib_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_tempmax aria-controls=interactions_visib-interactions_visib_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_tempmin aria-controls=interactions_visib-interactions_visib_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_tempave aria-controls=interactions_visib-interactions_visib_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_tempdeparture aria-controls=interactions_visib-interactions_visib_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_ppt aria-controls=interactions_visib-interactions_visib_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_newsnow aria-controls=interactions_visib-interactions_visib_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_visib-interactions_visib_snowdepth aria-controls=interactions_visib-interactions_visib_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_visib-interactions_visib_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.782407&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_1540ce6696 d=&amp;quot;M 100.473059 -57.4275
L 100.473059 -68.7525
L 86.945787 -74.415
L 73.418514 -68.7525
L 73.418514 -57.4275
L 86.945787 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.399668 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=113.563304 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=113.563304 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=167.672395 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=329.999668 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=357.054213 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=411.163304 xlink:href=#C0_0_1540ce6696 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=411.163304 xlink:href=#C0_0_1540ce6696 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=411.163304 xlink:href=#C0_0_1540ce6696 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=411.163304 xlink:href=#C0_0_1540ce6696 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=411.163304 xlink:href=#C0_0_1540ce6696 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=411.163304 xlink:href=#C0_0_1540ce6696 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_1540ce6696 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=411.163304 xlink:href=#C0_0_1540ce6696 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=411.163304 xlink:href=#C0_0_1540ce6696 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=127.090577 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=154.145123 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=154.145123 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=208.254213 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=235.308759 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=316.472395 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=370.581486 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=397.636032 xlink:href=#C0_0_1540ce6696 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=397.636032 xlink:href=#C0_0_1540ce6696 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=397.636032 xlink:href=#C0_0_1540ce6696 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=397.636032 xlink:href=#C0_0_1540ce6696 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=397.636032 xlink:href=#C0_0_1540ce6696 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=397.636032 xlink:href=#C0_0_1540ce6696 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=397.636032 xlink:href=#C0_0_1540ce6696 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb80e72412)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=397.636032 xlink:href=#C0_0_1540ce6696 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbb80e72412&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.856612&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_56b57c2718 d=&amp;quot;M 100.473059 -57.4275
L 100.473059 -68.7525
L 86.945787 -74.415
L 73.418514 -68.7525
L 73.418514 -57.4275
L 86.945787 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=167.672395 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=248.836032 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=329.999668 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=411.163304 xlink:href=#C0_0_56b57c2718 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_56b57c2718 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=411.163304 xlink:href=#C0_0_56b57c2718 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=411.163304 xlink:href=#C0_0_56b57c2718 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=411.163304 xlink:href=#C0_0_56b57c2718 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=411.163304 xlink:href=#C0_0_56b57c2718 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_56b57c2718 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_56b57c2718 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_56b57c2718 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=316.472395 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=370.581486 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_56b57c2718 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=397.636032 xlink:href=#C0_0_56b57c2718 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=397.636032 xlink:href=#C0_0_56b57c2718 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=397.636032 xlink:href=#C0_0_56b57c2718 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=397.636032 xlink:href=#C0_0_56b57c2718 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_56b57c2718 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_56b57c2718 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1247e0aa8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_56b57c2718 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1247e0aa8e&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:24.931950&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_0a679f3f87 d=&amp;quot;M 100.473059 -57.4275
L 100.473059 -68.7525
L 86.945787 -74.415
L 73.418514 -68.7525
L 73.418514 -57.4275
L 86.945787 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_0a679f3f87 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1cc801d059)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_0a679f3f87 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1cc801d059&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.003311&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ba6a3019c5 d=&amp;quot;M 100.473059 -53.847561
L 100.473059 -65.172561
L 86.945787 -70.835061
L 73.418514 -65.172561
L 73.418514 -53.847561
L 86.945787 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_ba6a3019c5 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=370.581486 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6c074ca87f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_ba6a3019c5 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p6c074ca87f&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.075023&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ee24f899b9 d=&amp;quot;M 100.473059 11.382627
L 100.473059 0.057627
L 86.945787 -5.604873
L 73.418514 0.057627
L 73.418514 11.382627
L 86.945787 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#659ac7;stroke:#659ac7; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=411.163304 xlink:href=#C0_0_ee24f899b9 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbea0f51036)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=397.636032 xlink:href=#C0_0_ee24f899b9 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbea0f51036&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.151765&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_7f4a0a0a6a d=&amp;quot;M 100.473059 -7.249038
L 100.473059 -18.574038
L 86.945787 -24.236538
L 73.418514 -18.574038
L 73.418514 -7.249038
L 86.945787 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#5b93c4;stroke:#5b93c4; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#699cc8;stroke:#699cc8; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#4e8bc0;stroke:#4e8bc0; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=411.163304 xlink:href=#C0_0_7f4a0a0a6a y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.254213 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb27e91d640)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=397.636032 xlink:href=#C0_0_7f4a0a0a6a y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pb27e91d640&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.228605&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_1e7755d4ae d=&amp;quot;M 100.473059 3.823204
L 100.473059 -7.501796
L 86.945787 -13.164296
L 73.418514 -7.501796
L 73.418514 3.823204
L 86.945787 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#518dc0;stroke:#518dc0; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=411.163304 xlink:href=#C0_0_1e7755d4ae y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=370.581486 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc9b258c2af)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=397.636032 xlink:href=#C0_0_1e7755d4ae y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pc9b258c2af&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.303397&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_465fa14e54 d=&amp;quot;M 100.473059 -171.523764
L 100.473059 -182.848764
L 86.945787 -188.511264
L 73.418514 -182.848764
L 73.418514 -171.523764
L 86.945787 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=411.163304 xlink:href=#C0_0_465fa14e54 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=411.163304 xlink:href=#C0_0_465fa14e54 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=411.163304 xlink:href=#C0_0_465fa14e54 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_465fa14e54 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=411.163304 xlink:href=#C0_0_465fa14e54 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=411.163304 xlink:href=#C0_0_465fa14e54 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=411.163304 xlink:href=#C0_0_465fa14e54 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=411.163304 xlink:href=#C0_0_465fa14e54 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=411.163304 xlink:href=#C0_0_465fa14e54 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=370.581486 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=370.581486 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=370.581486 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=370.581486 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=397.636032 xlink:href=#C0_0_465fa14e54 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=397.636032 xlink:href=#C0_0_465fa14e54 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=397.636032 xlink:href=#C0_0_465fa14e54 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=397.636032 xlink:href=#C0_0_465fa14e54 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=397.636032 xlink:href=#C0_0_465fa14e54 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=397.636032 xlink:href=#C0_0_465fa14e54 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=397.636032 xlink:href=#C0_0_465fa14e54 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7b34517159)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=397.636032 xlink:href=#C0_0_465fa14e54 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p7b34517159&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.372644&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_8f880ac5b1 d=&amp;quot;M 100.473059 -57.4275
L 100.473059 -68.7525
L 86.945787 -74.415
L 73.418514 -68.7525
L 73.418514 -57.4275
L 86.945787 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_8f880ac5b1 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfbe0e0784b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_8f880ac5b1 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pfbe0e0784b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.445538&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_96d7fe26d8 d=&amp;quot;M 100.473059 -57.4275
L 100.473059 -68.7525
L 86.945787 -74.415
L 73.418514 -68.7525
L 73.418514 -57.4275
L 86.945787 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_96d7fe26d8 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p581f2963ce)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_96d7fe26d8 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p581f2963ce&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_visib-interactions_visib_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.530153&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(84.165318 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.397979 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(248.630639 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.8633 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(413.095961 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(492.548153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(284.197422 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_81a9d2dddb d=&amp;quot;M 100.473059 -57.4275
L 100.473059 -68.7525
L 86.945787 -74.415
L 73.418514 -68.7525
L 73.418514 -57.4275
L 86.945787 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.345123 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.399668 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.454213 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.508759 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.563304 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.61785 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.672395 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.726941 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.781486 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=248.836032 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=275.890577 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=302.945123 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=329.999668 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=357.054213 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=384.108759 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=411.163304 xlink:href=#C0_0_81a9d2dddb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=18.872395 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=45.926941 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=72.981486 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.036032 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.090577 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.145123 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.199668 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.254213 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.308759 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=262.363304 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=289.41785 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=316.472395 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=343.526941 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=370.581486 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p52518c0e93)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=397.636032 xlink:href=#C0_0_81a9d2dddb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p52518c0e93&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_tempmax&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_tempmax-interactions_tempmax_winddir aria-controls=interactions_tempmax-interactions_tempmax_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_windspeed aria-controls=interactions_tempmax-interactions_tempmax_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_windgust aria-controls=interactions_tempmax-interactions_tempmax_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_visib aria-controls=interactions_tempmax-interactions_tempmax_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_tempmax aria-controls=interactions_tempmax-interactions_tempmax_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_tempmin aria-controls=interactions_tempmax-interactions_tempmax_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_tempave aria-controls=interactions_tempmax-interactions_tempmax_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_tempdeparture aria-controls=interactions_tempmax-interactions_tempmax_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_ppt aria-controls=interactions_tempmax-interactions_tempmax_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_newsnow aria-controls=interactions_tempmax-interactions_tempmax_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmax-interactions_tempmax_snowdepth aria-controls=interactions_tempmax-interactions_tempmax_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_tempmax-interactions_tempmax_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.603896&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_2d470f674f d=&amp;quot;M 3.079402 -57.4275
L 3.079402 -68.7525
L -10.447871 -74.415
L -23.975143 -68.7525
L -23.975143 -57.4275
L -10.447871 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=102.73878 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=129.793325 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=129.793325 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=129.793325 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=129.793325 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=129.793325 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=129.793325 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.847871 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=156.847871 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=156.847871 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.847871 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=156.847871 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=156.847871 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=183.902416 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=183.902416 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=183.902416 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=183.902416 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=183.902416 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=183.902416 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=183.902416 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=183.902416 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=183.902416 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=210.956961 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=210.956961 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=210.956961 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=210.956961 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=210.956961 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=210.956961 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=210.956961 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=210.956961 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=238.011507 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=238.011507 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=238.011507 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=238.011507 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=238.011507 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=238.011507 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=238.011507 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=238.011507 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=238.011507 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=265.066052 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=265.066052 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=265.066052 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=265.066052 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=265.066052 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=265.066052 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=265.066052 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=265.066052 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=265.066052 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=292.120598 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=292.120598 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=292.120598 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=292.120598 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=292.120598 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=292.120598 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=292.120598 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=292.120598 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=292.120598 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=319.175143 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=319.175143 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=319.175143 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=319.175143 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=319.175143 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=319.175143 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=319.175143 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=319.175143 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=319.175143 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=346.229689 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=346.229689 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=346.229689 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=346.229689 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=346.229689 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=346.229689 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=346.229689 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=346.229689 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=346.229689 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=373.284234 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=373.284234 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=373.284234 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=373.284234 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=373.284234 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=373.284234 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=373.284234 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=373.284234 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=373.284234 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=400.33878 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=400.33878 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=400.33878 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=400.33878 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=400.33878 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=400.33878 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=400.33878 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=400.33878 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=400.33878 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=427.393325 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=427.393325 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=427.393325 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=427.393325 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=427.393325 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=427.393325 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=427.393325 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=427.393325 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=427.393325 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=454.447871 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=454.447871 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=454.447871 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=454.447871 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=454.447871 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=454.447871 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=454.447871 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=454.447871 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=454.447871 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=481.502416 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=481.502416 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=481.502416 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=481.502416 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=481.502416 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=481.502416 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=481.502416 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=481.502416 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=481.502416 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=508.556961 xlink:href=#C0_0_2d470f674f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=508.556961 xlink:href=#C0_0_2d470f674f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d470f674f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=116.266052 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=116.266052 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=116.266052 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=116.266052 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=143.320598 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=143.320598 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=143.320598 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=143.320598 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=143.320598 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=170.375143 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=170.375143 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=170.375143 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=170.375143 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=170.375143 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=170.375143 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=170.375143 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=170.375143 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=197.429689 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=197.429689 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=197.429689 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=197.429689 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=197.429689 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=197.429689 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=197.429689 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=224.484234 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=224.484234 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=224.484234 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=224.484234 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=224.484234 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=224.484234 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=224.484234 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=224.484234 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=251.53878 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=251.53878 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=251.53878 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=251.53878 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=251.53878 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=251.53878 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=251.53878 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=251.53878 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=278.593325 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=278.593325 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=278.593325 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=278.593325 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=278.593325 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=278.593325 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=278.593325 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=278.593325 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=305.647871 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=305.647871 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=305.647871 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=305.647871 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=305.647871 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=305.647871 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=305.647871 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=305.647871 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a2c0da;stroke:#a2c0da; x=332.702416 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=332.702416 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=332.702416 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=332.702416 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=332.702416 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=332.702416 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=332.702416 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=332.702416 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=359.756961 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=359.756961 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=359.756961 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=359.756961 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=359.756961 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=359.756961 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=359.756961 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=359.756961 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=386.811507 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=386.811507 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=386.811507 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=386.811507 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=386.811507 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=386.811507 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=386.811507 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=386.811507 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#4d8abf;stroke:#4d8abf; x=413.866052 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=413.866052 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=413.866052 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=413.866052 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=413.866052 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=413.866052 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=413.866052 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=413.866052 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=440.920598 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=440.920598 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=440.920598 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=440.920598 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=440.920598 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#5690c2;stroke:#5690c2; x=440.920598 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=440.920598 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=440.920598 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=467.975143 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=467.975143 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=467.975143 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=467.975143 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=467.975143 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=467.975143 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=467.975143 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=467.975143 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d470f674f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d470f674f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d470f674f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d470f674f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=495.029689 xlink:href=#C0_0_2d470f674f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=495.029689 xlink:href=#C0_0_2d470f674f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=495.029689 xlink:href=#C0_0_2d470f674f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc5e2d4680)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=495.029689 xlink:href=#C0_0_2d470f674f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pdc5e2d4680&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.688391&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_2753b5bb68 d=&amp;quot;M 3.079402 -57.4275
L 3.079402 -68.7525
L -10.447871 -74.415
L -23.975143 -68.7525
L -23.975143 -57.4275
L -10.447871 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2753b5bb68 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#5790c2;stroke:#5790c2; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#518dc0;stroke:#518dc0; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p7c841fd2db)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2753b5bb68 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p7c841fd2db&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.773147&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_55b0866c45 d=&amp;quot;M 3.079402 -57.4275
L 3.079402 -68.7525
L -10.447871 -74.415
L -23.975143 -68.7525
L -23.975143 -57.4275
L -10.447871 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=102.73878 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=129.793325 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=129.793325 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=129.793325 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=129.793325 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=129.793325 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.793325 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.847871 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=156.847871 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=156.847871 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=156.847871 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=156.847871 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.847871 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=183.902416 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=183.902416 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=183.902416 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=183.902416 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=183.902416 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=183.902416 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=210.956961 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=210.956961 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=210.956961 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=210.956961 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=210.956961 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=210.956961 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=238.011507 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=238.011507 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=238.011507 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=238.011507 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=238.011507 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=238.011507 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=265.066052 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=265.066052 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=265.066052 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=265.066052 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=265.066052 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=265.066052 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=292.120598 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=292.120598 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=292.120598 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=292.120598 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=292.120598 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=292.120598 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=319.175143 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=319.175143 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=319.175143 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=319.175143 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=319.175143 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=346.229689 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=346.229689 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=346.229689 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=346.229689 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=346.229689 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=346.229689 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=373.284234 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=373.284234 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=373.284234 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=373.284234 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=373.284234 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=400.33878 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=400.33878 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=400.33878 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=400.33878 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=400.33878 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=400.33878 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=427.393325 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=427.393325 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=427.393325 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=427.393325 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=454.447871 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=454.447871 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=454.447871 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=454.447871 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=454.447871 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=481.502416 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=481.502416 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=481.502416 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=481.502416 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=481.502416 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=508.556961 xlink:href=#C0_0_55b0866c45 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=508.556961 xlink:href=#C0_0_55b0866c45 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=508.556961 xlink:href=#C0_0_55b0866c45 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=508.556961 xlink:href=#C0_0_55b0866c45 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_55b0866c45 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_55b0866c45 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_55b0866c45 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_55b0866c45 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_55b0866c45 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=116.266052 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=116.266052 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=116.266052 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=116.266052 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=143.320598 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=143.320598 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=143.320598 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=143.320598 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=170.375143 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=170.375143 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=170.375143 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=170.375143 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=170.375143 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=197.429689 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=197.429689 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=197.429689 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=197.429689 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=197.429689 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=197.429689 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=224.484234 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=224.484234 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=224.484234 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=224.484234 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=224.484234 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=224.484234 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=251.53878 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=251.53878 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=251.53878 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=251.53878 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=251.53878 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=251.53878 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=278.593325 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=278.593325 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=278.593325 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=278.593325 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=278.593325 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=305.647871 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=305.647871 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=305.647871 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=305.647871 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=305.647871 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=332.702416 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=332.702416 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=332.702416 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=332.702416 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=332.702416 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=359.756961 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=359.756961 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=359.756961 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=359.756961 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=359.756961 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=386.811507 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=386.811507 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=386.811507 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=386.811507 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=386.811507 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=413.866052 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#5790c2;stroke:#5790c2; x=413.866052 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=413.866052 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=413.866052 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=413.866052 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=440.920598 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#518dc0;stroke:#518dc0; x=440.920598 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=440.920598 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=440.920598 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=440.920598 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=467.975143 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=467.975143 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=467.975143 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=467.975143 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=467.975143 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=495.029689 xlink:href=#C0_0_55b0866c45 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=495.029689 xlink:href=#C0_0_55b0866c45 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=495.029689 xlink:href=#C0_0_55b0866c45 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=495.029689 xlink:href=#C0_0_55b0866c45 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_55b0866c45 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_55b0866c45 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_55b0866c45 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd1872f4950)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_55b0866c45 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd1872f4950&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:25.853405&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_c1dc6e1b62 d=&amp;quot;M 3.079402 -53.847561
L 3.079402 -65.172561
L -10.447871 -70.835061
L -23.975143 -65.172561
L -23.975143 -53.847561
L -10.447871 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=102.73878 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=129.793325 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=156.847871 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=183.902416 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=210.956961 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=238.011507 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=265.066052 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=292.120598 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=319.175143 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=346.229689 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=373.284234 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=400.33878 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=454.447871 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=481.502416 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=508.556961 xlink:href=#C0_0_c1dc6e1b62 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=251.53878 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=386.811507 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=467.975143 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6938a33fbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_c1dc6e1b62 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p6938a33fbb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.030586&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_1781f205ec d=&amp;quot;M 3.079402 11.382627
L 3.079402 0.057627
L -10.447871 -5.604873
L -23.975143 0.057627
L -23.975143 11.382627
L -10.447871 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=102.73878 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=156.847871 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=183.902416 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=210.956961 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=238.011507 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#3f81bb;stroke:#3f81bb; x=265.066052 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=292.120598 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=319.175143 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=346.229689 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=373.284234 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=400.33878 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=427.393325 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=454.447871 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_1781f205ec y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=508.556961 xlink:href=#C0_0_1781f205ec y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=116.266052 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=143.320598 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=170.375143 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=197.429689 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=224.484234 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=278.593325 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=332.702416 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=386.811507 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=413.866052 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=440.920598 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=467.975143 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_1781f205ec y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pfe42375e7a)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=495.029689 xlink:href=#C0_0_1781f205ec y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pfe42375e7a&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.118426&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_e34da8ccc4 d=&amp;quot;M 3.079402 -7.249038
L 3.079402 -18.574038
L -10.447871 -24.236538
L -23.975143 -18.574038
L -23.975143 -7.249038
L -10.447871 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#4a88be;stroke:#4a88be; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=454.447871 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=481.502416 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=508.556961 xlink:href=#C0_0_e34da8ccc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=386.811507 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=413.866052 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=440.920598 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=467.975143 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pea0a61e330)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=495.029689 xlink:href=#C0_0_e34da8ccc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pea0a61e330&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.207367&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_2d7f17ba71 d=&amp;quot;M 3.079402 3.823204
L 3.079402 -7.501796
L -10.447871 -13.164296
L -23.975143 -7.501796
L -23.975143 3.823204
L -10.447871 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#6d9fc9;stroke:#6d9fc9; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#548ec1;stroke:#548ec1; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=481.502416 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=508.556961 xlink:href=#C0_0_2d7f17ba71 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#4d8abf;stroke:#4d8abf; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=440.920598 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=467.975143 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd9f85de069)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=495.029689 xlink:href=#C0_0_2d7f17ba71 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd9f85de069&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.296832&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_790caadca2 d=&amp;quot;M 3.079402 -171.523764
L 3.079402 -182.848764
L -10.447871 -188.511264
L -23.975143 -182.848764
L -23.975143 -171.523764
L -10.447871 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=102.73878 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=129.793325 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=129.793325 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=156.847871 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=183.902416 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=183.902416 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=183.902416 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=210.956961 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=210.956961 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=210.956961 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=238.011507 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=238.011507 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=238.011507 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=238.011507 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=265.066052 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=265.066052 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=265.066052 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=265.066052 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=265.066052 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=265.066052 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=292.120598 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=292.120598 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=292.120598 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=292.120598 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=319.175143 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=319.175143 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=319.175143 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=319.175143 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=319.175143 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=346.229689 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=346.229689 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=346.229689 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=346.229689 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=373.284234 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=373.284234 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=373.284234 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=373.284234 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=373.284234 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=400.33878 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=400.33878 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=400.33878 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=400.33878 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=400.33878 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=427.393325 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=427.393325 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=427.393325 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=427.393325 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=454.447871 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=454.447871 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=454.447871 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=481.502416 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=481.502416 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=481.502416 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=481.502416 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=508.556961 xlink:href=#C0_0_790caadca2 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=508.556961 xlink:href=#C0_0_790caadca2 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_790caadca2 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=116.266052 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=143.320598 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=143.320598 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=170.375143 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=170.375143 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=170.375143 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=197.429689 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=197.429689 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=197.429689 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=197.429689 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=197.429689 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=224.484234 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=224.484234 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=224.484234 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=224.484234 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=251.53878 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=251.53878 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=251.53878 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=251.53878 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=251.53878 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=278.593325 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=278.593325 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=278.593325 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=278.593325 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=278.593325 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=305.647871 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=305.647871 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=305.647871 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=305.647871 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=305.647871 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=332.702416 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=332.702416 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=332.702416 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=332.702416 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=332.702416 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=332.702416 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=359.756961 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=359.756961 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=359.756961 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=359.756961 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=359.756961 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=359.756961 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=359.756961 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=386.811507 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=386.811507 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=386.811507 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=386.811507 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=386.811507 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=386.811507 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=386.811507 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=413.866052 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=413.866052 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=413.866052 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=413.866052 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#4686bd;stroke:#4686bd; x=440.920598 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=440.920598 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=440.920598 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=440.920598 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=467.975143 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=467.975143 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=467.975143 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_790caadca2 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_790caadca2 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_790caadca2 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_790caadca2 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=495.029689 xlink:href=#C0_0_790caadca2 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=495.029689 xlink:href=#C0_0_790caadca2 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_790caadca2 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p22b9510bc3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_790caadca2 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p22b9510bc3&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.381714&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_3853733573 d=&amp;quot;M 3.079402 -57.4275
L 3.079402 -68.7525
L -10.447871 -74.415
L -23.975143 -68.7525
L -23.975143 -57.4275
L -10.447871 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=102.73878 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=129.793325 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=156.847871 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=183.902416 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=183.902416 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=210.956961 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=210.956961 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=210.956961 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=238.011507 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=238.011507 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=265.066052 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=265.066052 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=265.066052 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=292.120598 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=292.120598 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=319.175143 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=346.229689 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=346.229689 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=346.229689 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=373.284234 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=373.284234 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=373.284234 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=400.33878 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=427.393325 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=454.447871 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=454.447871 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=454.447871 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=454.447871 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=481.502416 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=481.502416 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=508.556961 xlink:href=#C0_0_3853733573 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_3853733573 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=143.320598 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=197.429689 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=197.429689 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=224.484234 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=224.484234 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=224.484234 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=251.53878 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=251.53878 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=278.593325 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=278.593325 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=278.593325 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=305.647871 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=305.647871 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=305.647871 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=332.702416 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=359.756961 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=359.756961 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=386.811507 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=386.811507 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=413.866052 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=413.866052 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=413.866052 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=440.920598 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=440.920598 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=467.975143 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p36529061cd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_3853733573 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p36529061cd&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.466566&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_0705ee03af d=&amp;quot;M 3.079402 -57.4275
L 3.079402 -68.7525
L -10.447871 -74.415
L -23.975143 -68.7525
L -23.975143 -57.4275
L -10.447871 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=102.73878 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=129.793325 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=129.793325 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=156.847871 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=183.902416 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=210.956961 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.956961 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=238.011507 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=265.066052 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=292.120598 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=319.175143 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=346.229689 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=373.284234 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=400.33878 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#659ac7;stroke:#659ac7; x=454.447871 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=481.502416 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=508.556961 xlink:href=#C0_0_0705ee03af y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_0705ee03af y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=116.266052 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=170.375143 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=170.375143 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=170.375143 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=251.53878 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p74cf323081)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_0705ee03af y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p74cf323081&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmax-interactions_tempmax_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.575118&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(86.729972 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(138.099362 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.468752 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.838142 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.207532 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(343.576922 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(394.946312 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(446.315702 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(494.904623 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.525312 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_f46acae199 d=&amp;quot;M 3.079402 -57.4275
L 3.079402 -68.7525
L -10.447871 -74.415
L -23.975143 -68.7525
L -23.975143 -57.4275
L -10.447871 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=102.73878 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=102.73878 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=129.793325 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=129.793325 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.793325 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=156.847871 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.847871 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=156.847871 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=183.902416 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.902416 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=210.956961 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=210.956961 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.956961 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=238.011507 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=238.011507 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=238.011507 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=265.066052 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=265.066052 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=292.120598 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=292.120598 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=319.175143 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=319.175143 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=346.229689 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=346.229689 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=373.284234 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=373.284234 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=400.33878 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=400.33878 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=427.393325 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=427.393325 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#659ac7;stroke:#659ac7; x=454.447871 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=454.447871 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=481.502416 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=481.502416 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=508.556961 xlink:href=#C0_0_f46acae199 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=508.556961 xlink:href=#C0_0_f46acae199 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=116.266052 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=143.320598 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=143.320598 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=170.375143 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=170.375143 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=170.375143 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=197.429689 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=197.429689 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=197.429689 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=197.429689 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=197.429689 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=224.484234 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=224.484234 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=224.484234 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=251.53878 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=251.53878 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=251.53878 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=278.593325 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=278.593325 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=305.647871 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=332.702416 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=359.756961 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.811507 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.866052 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.920598 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.975143 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p556ccfc002)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=495.029689 xlink:href=#C0_0_f46acae199 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p556ccfc002&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_tempmin&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_tempmin-interactions_tempmin_winddir aria-controls=interactions_tempmin-interactions_tempmin_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_windspeed aria-controls=interactions_tempmin-interactions_tempmin_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_windgust aria-controls=interactions_tempmin-interactions_tempmin_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_visib aria-controls=interactions_tempmin-interactions_tempmin_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_tempmax aria-controls=interactions_tempmin-interactions_tempmin_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_tempmin aria-controls=interactions_tempmin-interactions_tempmin_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_tempave aria-controls=interactions_tempmin-interactions_tempmin_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_tempdeparture aria-controls=interactions_tempmin-interactions_tempmin_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_ppt aria-controls=interactions_tempmin-interactions_tempmin_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_newsnow aria-controls=interactions_tempmin-interactions_tempmin_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempmin-interactions_tempmin_snowdepth aria-controls=interactions_tempmin-interactions_tempmin_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_tempmin-interactions_tempmin_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.656629&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_20370f26a3 d=&amp;quot;M 30.897903 -57.4275
L 30.897903 -68.7525
L 17.37063 -74.415
L 3.843357 -68.7525
L 3.843357 -57.4275
L 17.37063 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=74.920279 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=74.920279 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=74.920279 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=74.920279 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=101.974825 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=101.974825 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=101.974825 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=101.974825 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=101.974825 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=129.02937 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=129.02937 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=129.02937 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=129.02937 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.02937 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#689cc8;stroke:#689cc8; x=129.02937 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=129.02937 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=129.02937 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=156.083916 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.083916 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=156.083916 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=156.083916 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=156.083916 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#6b9dc9;stroke:#6b9dc9; x=156.083916 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=156.083916 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=156.083916 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=183.138461 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=183.138461 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=183.138461 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=183.138461 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=183.138461 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=183.138461 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=183.138461 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=183.138461 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=210.193006 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=210.193006 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=210.193006 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=210.193006 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=210.193006 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=210.193006 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=210.193006 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=210.193006 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=210.193006 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#4a88be;stroke:#4a88be; x=237.247552 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=237.247552 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=237.247552 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=237.247552 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=237.247552 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#397eb9;stroke:#397eb9; x=237.247552 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=237.247552 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=237.247552 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=237.247552 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=264.302097 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=264.302097 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=264.302097 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=264.302097 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=264.302097 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=264.302097 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=264.302097 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=264.302097 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=264.302097 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=291.356643 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=291.356643 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=291.356643 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=291.356643 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=291.356643 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=291.356643 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=291.356643 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=291.356643 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=291.356643 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=318.411188 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=318.411188 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=318.411188 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=318.411188 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=318.411188 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=318.411188 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=318.411188 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=318.411188 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=318.411188 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=345.465734 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=345.465734 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=345.465734 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=345.465734 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=345.465734 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=345.465734 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=345.465734 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=345.465734 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=345.465734 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=372.520279 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=372.520279 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=372.520279 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=372.520279 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=372.520279 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=372.520279 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=372.520279 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=372.520279 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=372.520279 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=399.574825 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=399.574825 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=399.574825 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=399.574825 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=399.574825 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=399.574825 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=399.574825 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=399.574825 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=399.574825 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=426.62937 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=426.62937 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=426.62937 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=426.62937 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=426.62937 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#6297c6;stroke:#6297c6; x=426.62937 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=426.62937 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=426.62937 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=426.62937 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=453.683916 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=453.683916 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=453.683916 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=453.683916 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=453.683916 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=453.683916 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=453.683916 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=453.683916 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=480.738461 xlink:href=#C0_0_20370f26a3 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_20370f26a3 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_20370f26a3 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_20370f26a3 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_20370f26a3 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=480.738461 xlink:href=#C0_0_20370f26a3 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=480.738461 xlink:href=#C0_0_20370f26a3 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=480.738461 xlink:href=#C0_0_20370f26a3 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_20370f26a3 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=88.447552 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=88.447552 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=88.447552 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=88.447552 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=88.447552 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=115.502097 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=115.502097 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=115.502097 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=115.502097 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=115.502097 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=115.502097 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=142.556643 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=142.556643 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=142.556643 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=142.556643 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=142.556643 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=142.556643 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=142.556643 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=169.611188 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=169.611188 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=169.611188 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=169.611188 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=169.611188 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=169.611188 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=169.611188 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=169.611188 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=196.665734 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=196.665734 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=196.665734 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=196.665734 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=196.665734 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=196.665734 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=196.665734 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=196.665734 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=223.720279 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=223.720279 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=223.720279 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=223.720279 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=223.720279 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=223.720279 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=223.720279 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=223.720279 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#6499c6;stroke:#6499c6; x=250.774825 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=250.774825 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=250.774825 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=250.774825 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=250.774825 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=250.774825 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=250.774825 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=250.774825 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=277.82937 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=277.82937 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=277.82937 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=277.82937 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=277.82937 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=277.82937 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=277.82937 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=277.82937 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#4b89bf;stroke:#4b89bf; x=304.883916 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=304.883916 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=304.883916 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=304.883916 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=304.883916 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=304.883916 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=304.883916 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=304.883916 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=331.938461 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=331.938461 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=331.938461 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=331.938461 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=331.938461 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=331.938461 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=331.938461 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=331.938461 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=358.993006 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=358.993006 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=358.993006 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=358.993006 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=358.993006 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=358.993006 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=358.993006 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=358.993006 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=386.047552 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=386.047552 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=386.047552 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=386.047552 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=386.047552 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=386.047552 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=386.047552 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=386.047552 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#4e8bbf;stroke:#4e8bbf; x=413.102097 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=413.102097 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=413.102097 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#4e8bbf;stroke:#4e8bbf; x=413.102097 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=413.102097 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=413.102097 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=413.102097 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=413.102097 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=440.156643 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=440.156643 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=440.156643 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=440.156643 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=440.156643 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=440.156643 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=440.156643 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=440.156643 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_20370f26a3 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_20370f26a3 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_20370f26a3 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=467.211188 xlink:href=#C0_0_20370f26a3 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=467.211188 xlink:href=#C0_0_20370f26a3 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=467.211188 xlink:href=#C0_0_20370f26a3 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=467.211188 xlink:href=#C0_0_20370f26a3 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p892e5f15c3)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=467.211188 xlink:href=#C0_0_20370f26a3 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p892e5f15c3&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.737966&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_b8aeaa8129 d=&amp;quot;M 30.897903 -57.4275
L 30.897903 -68.7525
L 17.37063 -74.415
L 3.843357 -68.7525
L 3.843357 -57.4275
L 17.37063 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#528ec1;stroke:#528ec1; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_b8aeaa8129 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc8ade706f6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_b8aeaa8129 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pc8ade706f6&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.817879&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ba601b2e02 d=&amp;quot;M 30.897903 -57.4275
L 30.897903 -68.7525
L 17.37063 -74.415
L 3.843357 -68.7525
L 3.843357 -57.4275
L 17.37063 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#528ec1;stroke:#528ec1; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ba601b2e02 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbfe6b41dd0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ba601b2e02 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbfe6b41dd0&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.893943&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ab92f76701 d=&amp;quot;M 30.897903 -53.847561
L 30.897903 -65.172561
L 17.37063 -70.835061
L 3.843357 -65.172561
L 3.843357 -53.847561
L 17.37063 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=74.920279 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=101.974825 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=129.02937 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=129.02937 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=156.083916 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=156.083916 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=183.138461 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=183.138461 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=210.193006 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=210.193006 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=237.247552 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=237.247552 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=237.247552 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=237.247552 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=237.247552 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=237.247552 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=237.247552 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#4586bd;stroke:#4586bd; x=237.247552 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=264.302097 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=264.302097 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=264.302097 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=264.302097 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=264.302097 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=264.302097 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=291.356643 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=291.356643 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=318.411188 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=318.411188 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#548ec1;stroke:#548ec1; x=318.411188 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=345.465734 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=345.465734 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=372.520279 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#699cc8;stroke:#699cc8; x=372.520279 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=399.574825 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=399.574825 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=426.62937 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=426.62937 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=426.62937 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=426.62937 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=453.683916 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=453.683916 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=480.738461 xlink:href=#C0_0_ab92f76701 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=480.738461 xlink:href=#C0_0_ab92f76701 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=223.720279 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=250.774825 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=250.774825 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=250.774825 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=250.774825 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=250.774825 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=304.883916 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=304.883916 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=331.938461 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=413.102097 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=413.102097 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5d60e6475f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_ab92f76701 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5d60e6475f&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:26.970250&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_f45b1fa982 d=&amp;quot;M 30.897903 11.382627
L 30.897903 0.057627
L 17.37063 -5.604873
L 3.843357 0.057627
L 3.843357 11.382627
L 17.37063 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#4787bd;stroke:#4787bd; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#5690c2;stroke:#5690c2; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=426.62937 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=453.683916 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=480.738461 xlink:href=#C0_0_f45b1fa982 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=358.993006 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=413.102097 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#5690c2;stroke:#5690c2; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=440.156643 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p575d8a994b)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=467.211188 xlink:href=#C0_0_f45b1fa982 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p575d8a994b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.053154&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_10b6b69858 d=&amp;quot;M 30.897903 -7.249038
L 30.897903 -18.574038
L 17.37063 -24.236538
L 3.843357 -18.574038
L 3.843357 -7.249038
L 17.37063 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=74.920279 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=129.02937 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=156.083916 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=183.138461 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=210.193006 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=237.247552 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=264.302097 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=318.411188 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=345.465734 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=372.520279 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=399.574825 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_10b6b69858 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=480.738461 xlink:href=#C0_0_10b6b69858 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=88.447552 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=115.502097 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=142.556643 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=169.611188 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=196.665734 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=250.774825 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#7aa7cd;stroke:#7aa7cd; x=304.883916 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=358.993006 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=386.047552 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#4a88be;stroke:#4a88be; x=413.102097 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=440.156643 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_10b6b69858 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p497a18ba33)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=467.211188 xlink:href=#C0_0_10b6b69858 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p497a18ba33&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.134800&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_a7aa264460 d=&amp;quot;M 30.897903 3.823204
L 30.897903 -7.501796
L 17.37063 -13.164296
L 3.843357 -7.501796
L 3.843357 3.823204
L 17.37063 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=74.920279 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=74.920279 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=101.974825 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=129.02937 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=129.02937 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=156.083916 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=183.138461 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=183.138461 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=210.193006 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=210.193006 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=237.247552 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=237.247552 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=264.302097 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=264.302097 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=291.356643 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=291.356643 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=318.411188 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=318.411188 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=318.411188 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=345.465734 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=345.465734 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=399.574825 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=399.574825 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=426.62937 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=453.683916 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=453.683916 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a7aa264460 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=480.738461 xlink:href=#C0_0_a7aa264460 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=88.447552 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=88.447552 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=115.502097 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=115.502097 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=142.556643 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=142.556643 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=169.611188 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=169.611188 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=196.665734 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=196.665734 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=223.720279 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=223.720279 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=250.774825 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=250.774825 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=250.774825 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=277.82937 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=277.82937 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=304.883916 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=304.883916 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=331.938461 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=331.938461 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=358.993006 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=358.993006 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=358.993006 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=386.047552 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=386.047552 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#6499c6;stroke:#6499c6; x=413.102097 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=413.102097 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=440.156643 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=440.156643 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a7aa264460 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf3dc39e347)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=467.211188 xlink:href=#C0_0_a7aa264460 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pf3dc39e347&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.214782&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_24a3156224 d=&amp;quot;M 30.897903 -171.523764
L 30.897903 -182.848764
L 17.37063 -188.511264
L 3.843357 -182.848764
L 3.843357 -171.523764
L 17.37063 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=74.920279 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=74.920279 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=101.974825 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=129.02937 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=129.02937 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=129.02937 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=129.02937 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=156.083916 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=156.083916 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=156.083916 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=183.138461 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=183.138461 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=183.138461 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=210.193006 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#6d9fc9;stroke:#6d9fc9; x=210.193006 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=210.193006 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=210.193006 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=237.247552 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=237.247552 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=237.247552 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=237.247552 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=264.302097 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=264.302097 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=264.302097 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=264.302097 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=264.302097 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=264.302097 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=291.356643 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=291.356643 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=291.356643 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=291.356643 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=318.411188 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=318.411188 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=318.411188 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=318.411188 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=318.411188 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=318.411188 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#6499c6;stroke:#6499c6; x=345.465734 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=345.465734 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=345.465734 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=345.465734 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=345.465734 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=372.520279 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=372.520279 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=372.520279 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=372.520279 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=372.520279 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=399.574825 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=399.574825 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=399.574825 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=399.574825 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=399.574825 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#347bb7;stroke:#347bb7; x=426.62937 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#4485bc;stroke:#4485bc; x=426.62937 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=426.62937 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=426.62937 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=453.683916 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=453.683916 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=453.683916 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=453.683916 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=480.738461 xlink:href=#C0_0_24a3156224 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=480.738461 xlink:href=#C0_0_24a3156224 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_24a3156224 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=88.447552 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=88.447552 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=115.502097 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=115.502097 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=142.556643 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=142.556643 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=142.556643 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=169.611188 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=169.611188 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=169.611188 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=169.611188 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=196.665734 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=196.665734 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=196.665734 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=196.665734 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=223.720279 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=223.720279 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=223.720279 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=223.720279 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#78a5cd;stroke:#78a5cd; x=250.774825 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=250.774825 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=250.774825 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=250.774825 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=250.774825 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=277.82937 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=277.82937 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=277.82937 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=277.82937 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=277.82937 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=277.82937 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=277.82937 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=304.883916 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=304.883916 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#508cc0;stroke:#508cc0; x=304.883916 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=304.883916 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=304.883916 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=304.883916 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=331.938461 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=331.938461 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=331.938461 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=331.938461 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=331.938461 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=331.938461 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=358.993006 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=358.993006 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=358.993006 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=358.993006 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=386.047552 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=386.047552 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=386.047552 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=413.102097 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=413.102097 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=413.102097 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=413.102097 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=413.102097 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=413.102097 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=440.156643 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#4586bd;stroke:#4586bd; x=440.156643 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=440.156643 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=440.156643 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=467.211188 xlink:href=#C0_0_24a3156224 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pf58f7cbb04)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_24a3156224 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pf58f7cbb04&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.288916&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_a0112eed3a d=&amp;quot;M 30.897903 -57.4275
L 30.897903 -68.7525
L 17.37063 -74.415
L 3.843357 -68.7525
L 3.843357 -57.4275
L 17.37063 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=74.920279 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=101.974825 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=129.02937 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=156.083916 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=183.138461 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=183.138461 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=210.193006 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=210.193006 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#5790c2;stroke:#5790c2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=237.247552 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=237.247552 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=264.302097 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=264.302097 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=291.356643 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#6096c5;stroke:#6096c5; x=318.411188 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=318.411188 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=345.465734 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=345.465734 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=372.520279 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=372.520279 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=372.520279 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#4a88be;stroke:#4a88be; x=399.574825 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=399.574825 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=426.62937 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=426.62937 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=426.62937 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=453.683916 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=453.683916 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=480.738461 xlink:href=#C0_0_a0112eed3a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=480.738461 xlink:href=#C0_0_a0112eed3a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_a0112eed3a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=115.502097 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=142.556643 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=169.611188 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=196.665734 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=223.720279 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=223.720279 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=223.720279 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=250.774825 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=250.774825 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=277.82937 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=277.82937 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=304.883916 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=304.883916 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=304.883916 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=331.938461 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=331.938461 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=331.938461 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=358.993006 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=386.047552 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=386.047552 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=386.047552 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=413.102097 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=413.102097 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=413.102097 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=440.156643 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=440.156643 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=467.211188 xlink:href=#C0_0_a0112eed3a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=467.211188 xlink:href=#C0_0_a0112eed3a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a0112eed3a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a0112eed3a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a0112eed3a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a0112eed3a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a0112eed3a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p0d300fbdbb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_a0112eed3a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p0d300fbdbb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.366697&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_620eb0d76d d=&amp;quot;M 30.897903 -57.4275
L 30.897903 -68.7525
L 17.37063 -74.415
L 3.843357 -68.7525
L 3.843357 -57.4275
L 17.37063 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=74.920279 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=101.974825 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=101.974825 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=129.02937 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=129.02937 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=156.083916 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=183.138461 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=210.193006 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#3d80ba;stroke:#3d80ba; x=237.247552 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=264.302097 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=291.356643 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=318.411188 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=345.465734 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=372.520279 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#4183bb;stroke:#4183bb; x=399.574825 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=453.683916 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=480.738461 xlink:href=#C0_0_620eb0d76d y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_620eb0d76d y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=88.447552 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=142.556643 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=142.556643 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=169.611188 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=169.611188 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbb026feea6)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_620eb0d76d y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbb026feea6&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempmin-interactions_tempmin_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.443502&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(74.243259 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(136.676825 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(199.110391 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(261.543958 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(323.977524 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(386.41109 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(448.844657 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(511.278223 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.053281 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_019acea416 d=&amp;quot;M 30.897903 -57.4275
L 30.897903 -68.7525
L 17.37063 -74.415
L 3.843357 -68.7525
L 3.843357 -57.4275
L 17.37063 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=74.920279 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=74.920279 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=74.920279 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=101.974825 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=101.974825 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=101.974825 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=129.02937 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=129.02937 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=156.083916 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=156.083916 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=183.138461 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=183.138461 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=183.138461 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=210.193006 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=210.193006 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=210.193006 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#3d80ba;stroke:#3d80ba; x=237.247552 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=237.247552 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=264.302097 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=264.302097 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=291.356643 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=291.356643 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=318.411188 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=318.411188 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#7faacf;stroke:#7faacf; x=345.465734 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=345.465734 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=372.520279 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=372.520279 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#4183bb;stroke:#4183bb; x=399.574825 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=399.574825 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=426.62937 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=426.62937 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=453.683916 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=453.683916 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=480.738461 xlink:href=#C0_0_019acea416 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=480.738461 xlink:href=#C0_0_019acea416 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=88.447552 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=88.447552 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=88.447552 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=115.502097 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=115.502097 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=115.502097 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=115.502097 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=142.556643 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=142.556643 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=142.556643 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=169.611188 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=169.611188 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=169.611188 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=169.611188 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=196.665734 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=196.665734 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=196.665734 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=196.665734 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=223.720279 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=223.720279 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=250.774825 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=277.82937 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=304.883916 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=331.938461 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=358.993006 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=386.047552 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=413.102097 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=440.156643 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pa538c5b13e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=467.211188 xlink:href=#C0_0_019acea416 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pa538c5b13e&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_tempave&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_tempave-interactions_tempave_winddir aria-controls=interactions_tempave-interactions_tempave_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_windspeed aria-controls=interactions_tempave-interactions_tempave_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_windgust aria-controls=interactions_tempave-interactions_tempave_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_visib aria-controls=interactions_tempave-interactions_tempave_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_tempmax aria-controls=interactions_tempave-interactions_tempave_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_tempmin aria-controls=interactions_tempave-interactions_tempave_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_tempave aria-controls=interactions_tempave-interactions_tempave_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_tempdeparture aria-controls=interactions_tempave-interactions_tempave_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_ppt aria-controls=interactions_tempave-interactions_tempave_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_newsnow aria-controls=interactions_tempave-interactions_tempave_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempave-interactions_tempave_snowdepth aria-controls=interactions_tempave-interactions_tempave_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_tempave-interactions_tempave_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.518459&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_60ec95b4eb d=&amp;quot;M 14.366198 -57.4275
L 14.366198 -68.7525
L 0.838925 -74.415
L -12.688348 -68.7525
L -12.688348 -57.4275
L 0.838925 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=118.50653 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=172.61562 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#508cc0;stroke:#508cc0; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=199.670166 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=226.724711 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=253.779257 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=280.833802 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=307.888348 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=334.942893 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=361.997439 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#6a9cc8;stroke:#6a9cc8; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a2c0da;stroke:#a2c0da; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=389.051984 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=416.10653 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#699cc8;stroke:#699cc8; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=443.161075 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=470.21562 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_60ec95b4eb y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=104.979257 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=132.033802 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=159.088348 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=186.142893 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=213.197439 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#377db8;stroke:#377db8; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=240.251984 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=267.30653 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=294.361075 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=321.41562 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=348.470166 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=375.524711 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#4686bd;stroke:#4686bd; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=402.579257 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#4686bd;stroke:#4686bd; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=429.633802 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#88b0d2;stroke:#88b0d2; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=456.688348 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p84cf81dedd)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=483.742893 xlink:href=#C0_0_60ec95b4eb y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p84cf81dedd&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.594875&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_238546ec99 d=&amp;quot;M 14.366198 -57.4275
L 14.366198 -68.7525
L 0.838925 -74.415
L -12.688348 -68.7525
L -12.688348 -57.4275
L 0.838925 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=91.451984 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=91.451984 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=91.451984 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=91.451984 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=118.50653 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=118.50653 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=118.50653 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=118.50653 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=118.50653 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=118.50653 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=145.561075 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=145.561075 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=145.561075 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=145.561075 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=172.61562 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=172.61562 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=172.61562 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=172.61562 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=172.61562 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=199.670166 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=199.670166 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=199.670166 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=199.670166 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=199.670166 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=199.670166 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=226.724711 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=226.724711 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=226.724711 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=226.724711 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=226.724711 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=226.724711 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=253.779257 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=253.779257 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=253.779257 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=253.779257 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=253.779257 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=280.833802 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=280.833802 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=280.833802 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=280.833802 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=280.833802 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=280.833802 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=307.888348 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=307.888348 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=307.888348 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=307.888348 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=307.888348 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=334.942893 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=334.942893 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=334.942893 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=334.942893 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=334.942893 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=361.997439 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=361.997439 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=361.997439 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=361.997439 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=361.997439 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=389.051984 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=389.051984 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=389.051984 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=389.051984 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=389.051984 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=389.051984 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=416.10653 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=416.10653 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=416.10653 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=416.10653 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=416.10653 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=443.161075 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=443.161075 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=443.161075 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=443.161075 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=470.21562 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=470.21562 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=470.21562 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=470.21562 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=470.21562 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=497.270166 xlink:href=#C0_0_238546ec99 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=497.270166 xlink:href=#C0_0_238546ec99 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=497.270166 xlink:href=#C0_0_238546ec99 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=497.270166 xlink:href=#C0_0_238546ec99 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_238546ec99 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_238546ec99 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_238546ec99 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_238546ec99 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_238546ec99 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=104.979257 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=104.979257 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=104.979257 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=104.979257 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=132.033802 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=132.033802 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=132.033802 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=132.033802 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=132.033802 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=159.088348 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=159.088348 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=159.088348 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=159.088348 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=159.088348 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=186.142893 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=186.142893 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=186.142893 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=186.142893 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=186.142893 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=186.142893 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=213.197439 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=213.197439 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=213.197439 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=213.197439 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=213.197439 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=240.251984 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=240.251984 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=240.251984 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=240.251984 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=240.251984 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=240.251984 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=267.30653 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=267.30653 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=267.30653 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=267.30653 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=267.30653 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=294.361075 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=294.361075 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=294.361075 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=294.361075 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=294.361075 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=321.41562 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=321.41562 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=321.41562 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=321.41562 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=321.41562 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=348.470166 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=348.470166 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=348.470166 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=348.470166 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=348.470166 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=375.524711 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=375.524711 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=375.524711 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=375.524711 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=375.524711 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=402.579257 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=402.579257 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=402.579257 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=402.579257 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=402.579257 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=429.633802 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#5790c2;stroke:#5790c2; x=429.633802 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=429.633802 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=429.633802 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=429.633802 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=456.688348 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=456.688348 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=456.688348 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=456.688348 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=456.688348 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_238546ec99 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=483.742893 xlink:href=#C0_0_238546ec99 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=483.742893 xlink:href=#C0_0_238546ec99 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=483.742893 xlink:href=#C0_0_238546ec99 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_238546ec99 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_238546ec99 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_238546ec99 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3a08427d44)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_238546ec99 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p3a08427d44&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.672169&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_956d6a4ff2 d=&amp;quot;M 14.366198 -57.4275
L 14.366198 -68.7525
L 0.838925 -74.415
L -12.688348 -68.7525
L -12.688348 -57.4275
L 0.838925 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_956d6a4ff2 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#7ea9cf;stroke:#7ea9cf; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#5790c2;stroke:#5790c2; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p282c4c2a71)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_956d6a4ff2 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p282c4c2a71&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.744182&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_4971964256 d=&amp;quot;M 14.366198 -53.847561
L 14.366198 -65.172561
L 0.838925 -70.835061
L -12.688348 -65.172561
L -12.688348 -53.847561
L 0.838925 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=91.451984 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=118.50653 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=118.50653 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=145.561075 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=145.561075 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=172.61562 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=172.61562 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=172.61562 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=199.670166 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=199.670166 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=199.670166 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=199.670166 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=226.724711 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=226.724711 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=226.724711 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=226.724711 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=226.724711 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=226.724711 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=253.779257 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=253.779257 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=253.779257 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=253.779257 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=253.779257 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=253.779257 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=253.779257 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=280.833802 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=280.833802 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=280.833802 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=280.833802 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=280.833802 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=280.833802 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=280.833802 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=307.888348 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=307.888348 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=307.888348 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=307.888348 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=307.888348 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=307.888348 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=307.888348 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=334.942893 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=334.942893 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=334.942893 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=334.942893 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=334.942893 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#6d9ec9;stroke:#6d9ec9; x=334.942893 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=361.997439 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=361.997439 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=361.997439 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=361.997439 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=361.997439 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=389.051984 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=389.051984 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=389.051984 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=389.051984 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=389.051984 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=389.051984 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=389.051984 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=416.10653 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=416.10653 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=416.10653 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=416.10653 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=416.10653 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=443.161075 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=443.161075 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=443.161075 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=443.161075 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=470.21562 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=470.21562 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_4971964256 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=497.270166 xlink:href=#C0_0_4971964256 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=497.270166 xlink:href=#C0_0_4971964256 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=159.088348 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=159.088348 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=186.142893 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=213.197439 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=213.197439 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=213.197439 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=213.197439 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=213.197439 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=240.251984 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=240.251984 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=240.251984 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=240.251984 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=240.251984 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=240.251984 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=267.30653 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=267.30653 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=267.30653 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=267.30653 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=267.30653 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=267.30653 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=294.361075 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=294.361075 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=294.361075 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=321.41562 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=321.41562 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=321.41562 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=321.41562 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=321.41562 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=321.41562 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=348.470166 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=348.470166 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=348.470166 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=348.470166 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=375.524711 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=375.524711 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=375.524711 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=375.524711 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=402.579257 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=402.579257 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=402.579257 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=402.579257 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=402.579257 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=402.579257 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=429.633802 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=429.633802 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=429.633802 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=429.633802 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=456.688348 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=456.688348 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=456.688348 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6fad3a640b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_4971964256 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p6fad3a640b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.818159&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_baa78461d1 d=&amp;quot;M 14.366198 11.382627
L 14.366198 0.057627
L 0.838925 -5.604873
L -12.688348 0.057627
L -12.688348 11.382627
L 0.838925 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=91.451984 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=145.561075 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=145.561075 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=172.61562 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=199.670166 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=199.670166 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=226.724711 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=253.779257 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=253.779257 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=280.833802 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=280.833802 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=307.888348 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=307.888348 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=334.942893 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=334.942893 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=361.997439 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=361.997439 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=389.051984 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=389.051984 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#7ca8ce;stroke:#7ca8ce; x=416.10653 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=416.10653 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=443.161075 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=443.161075 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=470.21562 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=470.21562 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_baa78461d1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=497.270166 xlink:href=#C0_0_baa78461d1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=104.979257 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=132.033802 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=159.088348 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=159.088348 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=186.142893 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=186.142893 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=213.197439 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=240.251984 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=240.251984 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=267.30653 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=267.30653 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=294.361075 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=294.361075 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=321.41562 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=348.470166 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#82acd0;stroke:#82acd0; x=375.524711 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=375.524711 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=402.579257 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=402.579257 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=429.633802 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=429.633802 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=429.633802 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=456.688348 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=456.688348 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_baa78461d1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabaa32074c)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=483.742893 xlink:href=#C0_0_baa78461d1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pabaa32074c&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.897256&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_d456f97b55 d=&amp;quot;M 14.366198 -7.249038
L 14.366198 -18.574038
L 0.838925 -24.236538
L -12.688348 -18.574038
L -12.688348 -7.249038
L 0.838925 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=91.451984 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=118.50653 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=145.561075 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=145.561075 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=172.61562 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=172.61562 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=199.670166 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=226.724711 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=226.724711 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=253.779257 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=280.833802 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=280.833802 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=280.833802 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=307.888348 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=307.888348 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=334.942893 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=334.942893 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=361.997439 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=361.997439 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=389.051984 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=389.051984 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=416.10653 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=416.10653 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=470.21562 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=470.21562 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_d456f97b55 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=497.270166 xlink:href=#C0_0_d456f97b55 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=104.979257 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=132.033802 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=159.088348 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=159.088348 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=186.142893 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=186.142893 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=213.197439 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=213.197439 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=240.251984 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=240.251984 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=267.30653 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=267.30653 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=294.361075 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=294.361075 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=321.41562 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=321.41562 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=321.41562 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=348.470166 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=348.470166 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=375.524711 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=375.524711 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=375.524711 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=402.579257 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=429.633802 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=429.633802 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=429.633802 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=456.688348 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=456.688348 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_d456f97b55 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p432de35fcb)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=483.742893 xlink:href=#C0_0_d456f97b55 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p432de35fcb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:27.977625&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_e9752c57a4 d=&amp;quot;M 14.366198 3.823204
L 14.366198 -7.501796
L 0.838925 -13.164296
L -12.688348 -7.501796
L -12.688348 3.823204
L 0.838925 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#6197c5;stroke:#6197c5; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#5b93c4;stroke:#5b93c4; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#4384bc;stroke:#4384bc; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=497.270166 xlink:href=#C0_0_e9752c57a4 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#75a3cc;stroke:#75a3cc; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=456.688348 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1fc85b1288)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=483.742893 xlink:href=#C0_0_e9752c57a4 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1fc85b1288&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.055041&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_c0e3ef6618 d=&amp;quot;M 14.366198 -171.523764
L 14.366198 -182.848764
L 0.838925 -188.511264
L -12.688348 -182.848764
L -12.688348 -171.523764
L 0.838925 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=361.997439 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c0e3ef6618 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#8db2d3;stroke:#8db2d3; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=321.41562 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=348.470166 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#6197c5;stroke:#6197c5; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pabd33c8d77)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c0e3ef6618 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pabd33c8d77&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.129961&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_c15f56b6b5 d=&amp;quot;M 14.366198 -57.4275
L 14.366198 -68.7525
L 0.838925 -74.415
L -12.688348 -68.7525
L -12.688348 -57.4275
L 0.838925 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#a2c0da;stroke:#a2c0da; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#72a2cb;stroke:#72a2cb; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=361.997439 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_c15f56b6b5 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ee500965f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_c15f56b6b5 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5ee500965f&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.208723&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_3f28f109dd d=&amp;quot;M 14.366198 -57.4275
L 14.366198 -68.7525
L 0.838925 -74.415
L -12.688348 -68.7525
L -12.688348 -57.4275
L 0.838925 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=91.451984 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=118.50653 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=118.50653 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=145.561075 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=172.61562 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=172.61562 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=199.670166 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#6b9dc9;stroke:#6b9dc9; x=226.724711 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#6b9dc9;stroke:#6b9dc9; x=253.779257 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=280.833802 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=307.888348 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=334.942893 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=361.997439 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=389.051984 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=416.10653 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=470.21562 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=497.270166 xlink:href=#C0_0_3f28f109dd y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_3f28f109dd y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=159.088348 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=159.088348 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=213.197439 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc4751b6e28)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_3f28f109dd y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pc4751b6e28&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempave-interactions_tempave_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.287385&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(109.592968 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(166.750458 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(223.907949 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(281.065439 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(338.222929 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(395.38042 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(452.53791 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(509.6954 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(271.048125 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_ae450d881f d=&amp;quot;M 14.366198 -57.4275
L 14.366198 -68.7525
L 0.838925 -74.415
L -12.688348 -68.7525
L -12.688348 -57.4275
L 0.838925 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=91.451984 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=91.451984 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=91.451984 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=118.50653 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=118.50653 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=145.561075 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=145.561075 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=145.561075 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=172.61562 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=172.61562 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=199.670166 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=199.670166 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=199.670166 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=226.724711 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=226.724711 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=226.724711 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=253.779257 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=253.779257 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=280.833802 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=280.833802 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=307.888348 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=307.888348 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=334.942893 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=334.942893 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=361.997439 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=361.997439 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#6298c6;stroke:#6298c6; x=389.051984 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=389.051984 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=416.10653 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=416.10653 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=443.161075 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=443.161075 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=470.21562 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=470.21562 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=497.270166 xlink:href=#C0_0_ae450d881f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=497.270166 xlink:href=#C0_0_ae450d881f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=104.979257 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=104.979257 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=132.033802 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=132.033802 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=132.033802 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=159.088348 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=159.088348 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=159.088348 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=186.142893 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=186.142893 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=186.142893 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=186.142893 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=213.197439 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=213.197439 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=213.197439 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=213.197439 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=240.251984 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=240.251984 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=267.30653 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=267.30653 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=294.361075 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=321.41562 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=348.470166 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=375.524711 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=402.579257 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=429.633802 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=456.688348 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbefc2b764b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=483.742893 xlink:href=#C0_0_ae450d881f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbefc2b764b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_tempdeparture&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_tempdeparture-interactions_tempdeparture_winddir aria-controls=interactions_tempdeparture-interactions_tempdeparture_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_windspeed aria-controls=interactions_tempdeparture-interactions_tempdeparture_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_windgust aria-controls=interactions_tempdeparture-interactions_tempdeparture_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_visib aria-controls=interactions_tempdeparture-interactions_tempdeparture_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_tempmax aria-controls=interactions_tempdeparture-interactions_tempdeparture_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_tempmin aria-controls=interactions_tempdeparture-interactions_tempdeparture_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_tempave aria-controls=interactions_tempdeparture-interactions_tempdeparture_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_tempdeparture aria-controls=interactions_tempdeparture-interactions_tempdeparture_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_ppt aria-controls=interactions_tempdeparture-interactions_tempdeparture_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_newsnow aria-controls=interactions_tempdeparture-interactions_tempdeparture_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_tempdeparture-interactions_tempdeparture_snowdepth aria-controls=interactions_tempdeparture-interactions_tempdeparture_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.363681&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_fdec7fb94c d=&amp;quot;M 276.172627 -57.4275
L 276.172627 -68.7525
L 262.645355 -74.415
L 249.118082 -68.7525
L 249.118082 -57.4275
L 262.645355 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-143.2999 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=-89.190809 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#8ab0d2;stroke:#8ab0d2; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=-62.136264 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#4e8bc0;stroke:#4e8bc0; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#88b0d2;stroke:#88b0d2; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=-35.081718 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#4183bb;stroke:#4183bb; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-8.027173 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#84add1;stroke:#84add1; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#88b0d2;stroke:#88b0d2; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=19.027373 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=46.081918 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=73.136463 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=100.191009 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=127.245554 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.3001 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_fdec7fb94c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-156.827173 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-129.772627 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=-102.718082 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-75.663537 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#518dc0;stroke:#518dc0; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=-48.608991 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#8ab1d3;stroke:#8ab1d3; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=-21.554446 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#88b0d2;stroke:#88b0d2; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#669ac7;stroke:#669ac7; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a2c0da;stroke:#a2c0da; x=5.5001 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#4e8bbf;stroke:#4e8bbf; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b8cee1;stroke:#b8cee1; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=32.554645 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=59.609191 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=86.663736 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=113.718282 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=140.772827 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd3e3667b5a)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=221.936463 xlink:href=#C0_0_fdec7fb94c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd3e3667b5a&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.438006&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_59fac29b4f d=&amp;quot;M 276.172627 -57.4275
L 276.172627 -68.7525
L 262.645355 -74.415
L 249.118082 -68.7525
L 249.118082 -57.4275
L 262.645355 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#4384bc;stroke:#4384bc; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#3c80ba;stroke:#3c80ba; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#518dc0;stroke:#518dc0; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=19.027373 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#3f81bb;stroke:#3f81bb; x=19.027373 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=19.027373 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=19.027373 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=19.027373 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=19.027373 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=46.081918 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=46.081918 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=46.081918 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=46.081918 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=46.081918 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=46.081918 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=73.136463 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=73.136463 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=73.136463 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=73.136463 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=73.136463 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=73.136463 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=100.191009 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=100.191009 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=100.191009 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=100.191009 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=100.191009 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.191009 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=127.245554 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=127.245554 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=127.245554 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=127.245554 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=127.245554 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.245554 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=154.3001 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=154.3001 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=154.3001 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=154.3001 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=154.3001 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=181.354645 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=208.409191 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=235.463736 xlink:href=#C0_0_59fac29b4f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=235.463736 xlink:href=#C0_0_59fac29b4f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_59fac29b4f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=5.5001 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=5.5001 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=5.5001 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=5.5001 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=5.5001 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=32.554645 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=32.554645 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=32.554645 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=32.554645 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=32.554645 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=59.609191 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=59.609191 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=59.609191 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=59.609191 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=59.609191 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=86.663736 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=86.663736 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=86.663736 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=86.663736 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=86.663736 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.663736 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=113.718282 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=113.718282 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=113.718282 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=113.718282 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.718282 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=140.772827 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=140.772827 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=140.772827 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=140.772827 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=140.772827 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=167.827373 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=167.827373 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=167.827373 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=221.936463 xlink:href=#C0_0_59fac29b4f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=221.936463 xlink:href=#C0_0_59fac29b4f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=221.936463 xlink:href=#C0_0_59fac29b4f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=221.936463 xlink:href=#C0_0_59fac29b4f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_59fac29b4f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_59fac29b4f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_59fac29b4f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1b38aa0c39)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_59fac29b4f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1b38aa0c39&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.511527&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_a604bd7469 d=&amp;quot;M 276.172627 -57.4275
L 276.172627 -68.7525
L 262.645355 -74.415
L 249.118082 -68.7525
L 249.118082 -57.4275
L 262.645355 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#81abcf;stroke:#81abcf; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#4384bc;stroke:#4384bc; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#80aacf;stroke:#80aacf; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#3c80ba;stroke:#3c80ba; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#518dc0;stroke:#518dc0; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=19.027373 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#3f81bb;stroke:#3f81bb; x=19.027373 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=19.027373 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=19.027373 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=19.027373 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=19.027373 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=46.081918 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=46.081918 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#9bbbd8;stroke:#9bbbd8; x=46.081918 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=46.081918 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=46.081918 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=46.081918 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=73.136463 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=73.136463 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=73.136463 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=73.136463 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=73.136463 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=73.136463 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=100.191009 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=100.191009 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=100.191009 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=100.191009 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=100.191009 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.191009 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=127.245554 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=127.245554 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=127.245554 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=127.245554 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=127.245554 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.245554 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=154.3001 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=154.3001 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=154.3001 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=154.3001 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=154.3001 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=181.354645 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=208.409191 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=235.463736 xlink:href=#C0_0_a604bd7469 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=235.463736 xlink:href=#C0_0_a604bd7469 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a604bd7469 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#548fc1;stroke:#548fc1; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d6e1eb;stroke:#d6e1eb; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=5.5001 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=5.5001 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=5.5001 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=5.5001 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=5.5001 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=32.554645 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=32.554645 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#95b7d6;stroke:#95b7d6; x=32.554645 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=32.554645 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=32.554645 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=59.609191 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=59.609191 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=59.609191 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=59.609191 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=59.609191 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=86.663736 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=86.663736 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=86.663736 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=86.663736 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=86.663736 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.663736 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=113.718282 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=113.718282 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=113.718282 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=113.718282 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=113.718282 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=140.772827 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=140.772827 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=140.772827 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=140.772827 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=140.772827 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=167.827373 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=167.827373 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=167.827373 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=167.827373 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=221.936463 xlink:href=#C0_0_a604bd7469 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=221.936463 xlink:href=#C0_0_a604bd7469 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=221.936463 xlink:href=#C0_0_a604bd7469 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=221.936463 xlink:href=#C0_0_a604bd7469 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a604bd7469 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a604bd7469 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a604bd7469 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p082820a922)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a604bd7469 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p082820a922&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.578206&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_eb8b151e53 d=&amp;quot;M 276.172627 -53.847561
L 276.172627 -65.172561
L 262.645355 -70.835061
L 249.118082 -65.172561
L 249.118082 -53.847561
L 262.645355 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-170.354446 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-143.2999 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=-116.245355 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=-89.190809 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=-62.136264 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#3d80ba;stroke:#3d80ba; x=-35.081718 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-8.027173 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=19.027373 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#7da9ce;stroke:#7da9ce; x=46.081918 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=73.136463 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=100.191009 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=127.245554 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=154.3001 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=181.354645 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=208.409191 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=235.463736 xlink:href=#C0_0_eb8b151e53 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-21.554446 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=32.554645 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=59.609191 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=113.718282 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe03fa51673)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_eb8b151e53 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pe03fa51673&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.645497&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_2ba87cd627 d=&amp;quot;M 276.172627 11.382627
L 276.172627 0.057627
L 262.645355 -5.604873
L 249.118082 0.057627
L 249.118082 11.382627
L 262.645355 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#4988be;stroke:#4988be; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#71a1cb;stroke:#71a1cb; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=73.136463 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=100.191009 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=127.245554 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_2ba87cd627 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#367cb8;stroke:#367cb8; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#3f81bb;stroke:#3f81bb; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#96b8d6;stroke:#96b8d6; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=32.554645 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=59.609191 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=86.663736 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=113.718282 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=140.772827 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=167.827373 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p32c4f62509)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_2ba87cd627 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p32c4f62509&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.718355&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_f8c71cb9e4 d=&amp;quot;M 276.172627 -7.249038
L 276.172627 -18.574038
L 262.645355 -24.236538
L 249.118082 -18.574038
L 249.118082 -7.249038
L 262.645355 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#84add0;stroke:#84add0; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#bbd0e2;stroke:#bbd0e2; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#85aed1;stroke:#85aed1; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=46.081918 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=73.136463 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b2cadf;stroke:#b2cadf; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_f8c71cb9e4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#91b5d5;stroke:#91b5d5; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#d1dde9;stroke:#d1dde9; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#a1bfda;stroke:#a1bfda; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#3f81bb;stroke:#3f81bb; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=5.5001 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#95b8d6;stroke:#95b8d6; x=32.554645 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=59.609191 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=86.663736 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=113.718282 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cfdce8;stroke:#cfdce8; x=140.772827 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=167.827373 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pb768f2137a)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_f8c71cb9e4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pb768f2137a&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.791551&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_e49832df7a d=&amp;quot;M 276.172627 3.823204
L 276.172627 -7.501796
L 262.645355 -13.164296
L 249.118082 -7.501796
L 249.118082 3.823204
L 262.645355 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-170.354446 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-170.354446 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=-143.2999 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-143.2999 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-143.2999 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-143.2999 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-116.245355 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=-89.190809 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=-89.190809 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=-89.190809 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-89.190809 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=-89.190809 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=-62.136264 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-62.136264 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c0d2e3;stroke:#c0d2e3; x=-62.136264 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=-62.136264 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=-35.081718 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#79a6cd;stroke:#79a6cd; x=-35.081718 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=-35.081718 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=-35.081718 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=-35.081718 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=-8.027173 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=-8.027173 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-8.027173 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=-8.027173 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-8.027173 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=-8.027173 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=19.027373 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=19.027373 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=19.027373 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=19.027373 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=19.027373 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#7ba8ce;stroke:#7ba8ce; x=19.027373 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=46.081918 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=46.081918 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=46.081918 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=46.081918 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=46.081918 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=73.136463 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=73.136463 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=73.136463 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=73.136463 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=73.136463 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=100.191009 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=100.191009 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=100.191009 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=100.191009 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=127.245554 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=127.245554 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=127.245554 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=154.3001 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=154.3001 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=154.3001 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=208.409191 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_e49832df7a y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-129.772627 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-129.772627 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-129.772627 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-102.718082 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-102.718082 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-102.718082 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-102.718082 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=-75.663537 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=-75.663537 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=-75.663537 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=-75.663537 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d1dee9;stroke:#d1dee9; x=-48.608991 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=-48.608991 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-48.608991 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-48.608991 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=-48.608991 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-48.608991 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=-21.554446 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=-21.554446 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=-21.554446 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c2d4e4;stroke:#c2d4e4; x=-21.554446 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#c4d5e5;stroke:#c4d5e5; x=-21.554446 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-21.554446 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=5.5001 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=5.5001 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=5.5001 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=5.5001 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=5.5001 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=32.554645 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=32.554645 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=32.554645 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=32.554645 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=32.554645 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=32.554645 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=59.609191 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=59.609191 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=59.609191 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=59.609191 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=59.609191 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=59.609191 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=86.663736 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=86.663736 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=86.663736 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=86.663736 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=113.718282 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#a6c3db;stroke:#a6c3db; x=113.718282 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=113.718282 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=113.718282 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=140.772827 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=140.772827 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#cbdae7;stroke:#cbdae7; x=140.772827 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=167.827373 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=167.827373 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=167.827373 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=194.881918 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_e49832df7a y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_e49832df7a y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_e49832df7a y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_e49832df7a y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=221.936463 xlink:href=#C0_0_e49832df7a y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=221.936463 xlink:href=#C0_0_e49832df7a y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_e49832df7a y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1312cdb7d8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_e49832df7a y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1312cdb7d8&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.861497&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_260d142139 d=&amp;quot;M 276.172627 -171.523764
L 276.172627 -182.848764
L 262.645355 -188.511264
L 249.118082 -182.848764
L 249.118082 -171.523764
L 262.645355 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-170.354446 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-116.245355 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-89.190809 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#81abd0;stroke:#81abd0; x=-62.136264 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=-35.081718 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#4c8abf;stroke:#4c8abf; x=-8.027173 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#5e95c5;stroke:#5e95c5; x=19.027373 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#73a2cb;stroke:#73a2cb; x=46.081918 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=73.136463 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#bdd1e2;stroke:#bdd1e2; x=100.191009 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=127.245554 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=154.3001 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=181.354645 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_260d142139 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=235.463736 xlink:href=#C0_0_260d142139 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-156.827173 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=-129.772627 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=-102.718082 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=-75.663537 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=-48.608991 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=5.5001 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#87afd2;stroke:#87afd2; x=59.609191 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=113.718282 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=140.772827 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=167.827373 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=194.881918 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_260d142139 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc69418fe8e)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=221.936463 xlink:href=#C0_0_260d142139 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pc69418fe8e&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:28.931271&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_484def4dcc d=&amp;quot;M 276.172627 -57.4275
L 276.172627 -68.7525
L 262.645355 -74.415
L 249.118082 -68.7525
L 249.118082 -57.4275
L 262.645355 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-170.354446 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-143.2999 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=-116.245355 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=-89.190809 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#86aed1;stroke:#86aed1; x=-62.136264 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=-62.136264 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-62.136264 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-62.136264 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#4c8abf;stroke:#4c8abf; x=-35.081718 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-8.027173 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-8.027173 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#6599c7;stroke:#6599c7; x=19.027373 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=19.027373 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=46.081918 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=46.081918 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=73.136463 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=73.136463 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=100.191009 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=100.191009 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=127.245554 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=127.245554 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=154.3001 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=154.3001 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=181.354645 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=208.409191 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=235.463736 xlink:href=#C0_0_484def4dcc y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_484def4dcc y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-102.718082 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-102.718082 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-75.663537 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-48.608991 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-48.608991 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-48.608991 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-21.554446 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-21.554446 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-21.554446 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-21.554446 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=5.5001 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=5.5001 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=32.554645 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=32.554645 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.554645 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=59.609191 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=86.663736 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=86.663736 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=140.772827 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=221.936463 xlink:href=#C0_0_484def4dcc y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p94fd0a16cb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_484def4dcc y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p94fd0a16cb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.002646&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_6a9174a156 d=&amp;quot;M 276.172627 -57.4275
L 276.172627 -68.7525
L 262.645355 -74.415
L 249.118082 -68.7525
L 249.118082 -57.4275
L 262.645355 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#3e81ba;stroke:#3e81ba; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-35.081718 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#4585bd;stroke:#4585bd; x=19.027373 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#70a1ca;stroke:#70a1ca; x=46.081918 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=73.136463 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#a0bed9;stroke:#a0bed9; x=100.191009 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=127.245554 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#d0dde8;stroke:#d0dde8; x=154.3001 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=181.354645 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=208.409191 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_6a9174a156 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe5501ca1a1)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_6a9174a156 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pe5501ca1a1&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_tempdeparture-interactions_tempdeparture_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.159288&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(75.782487 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(164.973296 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(259.864886 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(346.275226 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(435.466035 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(256.373437 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_a4ca70f977 d=&amp;quot;M 276.172627 -57.4275
L 276.172627 -68.7525
L 262.645355 -74.415
L 249.118082 -68.7525
L 249.118082 -57.4275
L 262.645355 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-170.354446 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-143.2999 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-116.245355 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-89.190809 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#70a0ca;stroke:#70a0ca; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-62.136264 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#377cb8;stroke:#377cb8; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-35.081718 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-8.027173 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#4887be;stroke:#4887be; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=19.027373 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#6d9fc9;stroke:#6d9fc9; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=46.081918 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#a3c1da;stroke:#a3c1da; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=73.136463 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=100.191009 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=127.245554 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=154.3001 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=181.354645 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=208.409191 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=235.463736 xlink:href=#C0_0_a4ca70f977 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-156.827173 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-129.772627 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-102.718082 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-75.663537 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-48.608991 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-21.554446 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=5.5001 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=32.554645 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=59.609191 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=86.663736 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=113.718282 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=140.772827 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=167.827373 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=194.881918 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p221bf9d99b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=221.936463 xlink:href=#C0_0_a4ca70f977 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p221bf9d99b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_ppt&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_ppt-interactions_ppt_winddir aria-controls=interactions_ppt-interactions_ppt_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_windspeed aria-controls=interactions_ppt-interactions_ppt_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_windgust aria-controls=interactions_ppt-interactions_ppt_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_visib aria-controls=interactions_ppt-interactions_ppt_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_tempmax aria-controls=interactions_ppt-interactions_ppt_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_tempmin aria-controls=interactions_ppt-interactions_ppt_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_tempave aria-controls=interactions_ppt-interactions_ppt_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_tempdeparture aria-controls=interactions_ppt-interactions_ppt_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_ppt aria-controls=interactions_ppt-interactions_ppt_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_newsnow aria-controls=interactions_ppt-interactions_ppt_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_ppt-interactions_ppt_snowdepth aria-controls=interactions_ppt-interactions_ppt_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_ppt-interactions_ppt_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.228709&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_32b38703bf d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#5d95c4;stroke:#5d95c4; x=-0 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#cad9e7;stroke:#cad9e7; x=-0 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=-0 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#c7d7e6;stroke:#c7d7e6; x=-0 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=-0 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=-0 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#9abbd7;stroke:#9abbd7; x=-0 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=-0 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=27.054545 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=54.109091 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=54.109091 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_32b38703bf y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#6fa0ca;stroke:#6fa0ca; x=13.527272 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#cbd9e7;stroke:#cbd9e7; x=13.527272 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=13.527272 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#bacfe1;stroke:#bacfe1; x=13.527272 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=13.527272 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#6398c6;stroke:#6398c6; x=13.527272 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=13.527272 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#abc5dd;stroke:#abc5dd; x=13.527272 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=40.581818 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=40.581818 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=40.581818 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=40.581818 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pbe7014b23f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_32b38703bf y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pbe7014b23f&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.309729&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_cf2095725f d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=-0 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=-0 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=-0 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=27.054545 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=54.109091 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_cf2095725f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#4f8cc0;stroke:#4f8cc0; x=13.527272 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=13.527272 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=13.527272 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=40.581818 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=40.581818 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=67.636363 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4b564cbaa7)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_cf2095725f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4b564cbaa7&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.391437&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_04e7b40391 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#bed2e3;stroke:#bed2e3; x=-0 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=-0 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#89b0d2;stroke:#89b0d2; x=-0 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=27.054545 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=54.109091 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_04e7b40391 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#4f8cc0;stroke:#4f8cc0; x=13.527272 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=13.527272 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=13.527272 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=40.581818 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=40.581818 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=40.581818 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=67.636363 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p257d785f7f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_04e7b40391 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p257d785f7f&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.466465&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_4a7c0b308d d=&amp;quot;M 105.818182 -53.847561
L 105.818182 -65.172561
L 92.290909 -70.835061
L 78.763637 -65.172561
L 78.763637 -53.847561
L 92.290909 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=27.054545 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=54.109091 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4a7c0b308d y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4137490f32)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4a7c0b308d y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4137490f32&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.542485&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_8ec3c1a1aa d=&amp;quot;M 105.818182 11.382627
L 105.818182 0.057627
L 92.290909 -5.604873
L 78.763637 0.057627
L 78.763637 11.382627
L 92.290909 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#90b5d4;stroke:#90b5d4; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#4686bd;stroke:#4686bd; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#659ac7;stroke:#659ac7; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#689cc8;stroke:#689cc8; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-0 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8ec3c1a1aa y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#d9e2eb;stroke:#d9e2eb; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#d5e0ea;stroke:#d5e0ea; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#7ba7ce;stroke:#7ba7ce; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=13.527272 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=40.581818 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1839cc3fbc)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8ec3c1a1aa y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1839cc3fbc&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.623471&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_c4cb11efc4 d=&amp;quot;M 105.818182 -7.249038
L 105.818182 -18.574038
L 92.290909 -24.236538
L 78.763637 -18.574038
L 78.763637 -7.249038
L 92.290909 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=-0 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=-0 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=-0 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=-0 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#6297c6;stroke:#6297c6; x=-0 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=-0 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#94b7d6;stroke:#94b7d6; x=-0 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=-0 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=54.109091 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c4cb11efc4 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#bcd0e2;stroke:#bcd0e2; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#99bad7;stroke:#99bad7; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#74a3cc;stroke:#74a3cc; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#c9d8e6;stroke:#c9d8e6; x=13.527272 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=40.581818 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=67.636363 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d0c321244)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c4cb11efc4 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4d0c321244&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.702765&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_67dd0d8200 d=&amp;quot;M 105.818182 3.823204
L 105.818182 -7.501796
L 92.290909 -13.164296
L 78.763637 -7.501796
L 78.763637 3.823204
L 92.290909 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=-0 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=-0 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=-0 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#538ec1;stroke:#538ec1; x=-0 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=-0 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#6c9ec9;stroke:#6c9ec9; x=-0 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=-0 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=-0 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_67dd0d8200 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#77a5cc;stroke:#77a5cc; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=13.527272 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e3e9ee;stroke:#e3e9ee; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=40.581818 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p196a89a3e0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_67dd0d8200 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p196a89a3e0&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.782406&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_9bf305c816 d=&amp;quot;M 105.818182 -171.523764
L 105.818182 -182.848764
L 92.290909 -188.511264
L 78.763637 -182.848764
L 78.763637 -171.523764
L 92.290909 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-0 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#9bbcd8;stroke:#9bbcd8; x=-0 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#5f96c5;stroke:#5f96c5; x=-0 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#b9cee1;stroke:#b9cee1; x=-0 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#c1d3e4;stroke:#c1d3e4; x=-0 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=27.054545 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=27.054545 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=27.054545 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=27.054545 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9bf305c816 y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#d2dee9;stroke:#d2dee9; x=13.527272 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=13.527272 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=13.527272 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#bfd2e3;stroke:#bfd2e3; x=13.527272 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=13.527272 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#dce5ec;stroke:#dce5ec; x=13.527272 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=13.527272 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=40.581818 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=40.581818 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=40.581818 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=94.690909 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p60fc7f63e5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9bf305c816 y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p60fc7f63e5&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.857672&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_8f7253e9da d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=54.109091 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_8f7253e9da y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=40.581818 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4d865dcd59)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_8f7253e9da y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4d865dcd59&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:29.937566&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_fc2d5e618a d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fc2d5e618a y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p92998126d3)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fc2d5e618a y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p92998126d3&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_ppt-interactions_ppt_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.017055&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(85.340909 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(137.908031 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(190.475153 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(243.042275 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.609397 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(348.176519 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(400.743641 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.310763 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.877885 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(287.555 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_97e7031954 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#dee6ed;stroke:#dee6ed; x=27.054545 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=54.109091 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=81.163636 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_97e7031954 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pd20a363535)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_97e7031954 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pd20a363535&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_newsnow&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_newsnow-interactions_newsnow_winddir aria-controls=interactions_newsnow-interactions_newsnow_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_windspeed aria-controls=interactions_newsnow-interactions_newsnow_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_windgust aria-controls=interactions_newsnow-interactions_newsnow_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_visib aria-controls=interactions_newsnow-interactions_newsnow_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_tempmax aria-controls=interactions_newsnow-interactions_newsnow_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_tempmin aria-controls=interactions_newsnow-interactions_newsnow_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_tempave aria-controls=interactions_newsnow-interactions_newsnow_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_tempdeparture aria-controls=interactions_newsnow-interactions_newsnow_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_ppt aria-controls=interactions_newsnow-interactions_newsnow_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_newsnow aria-controls=interactions_newsnow-interactions_newsnow_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_newsnow-interactions_newsnow_snowdepth aria-controls=interactions_newsnow-interactions_newsnow_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_newsnow-interactions_newsnow_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.093631&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_49fe2c9666 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#518dc1;stroke:#518dc1; x=-0 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=-0 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#b6cce0;stroke:#b6cce0; x=-0 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#a0bfd9;stroke:#a0bfd9; x=-0 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#5c94c4;stroke:#5c94c4; x=-0 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#9fbed9;stroke:#9fbed9; x=-0 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=-0 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=297.6 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_49fe2c9666 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#689cc8;stroke:#689cc8; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#b3cbdf;stroke:#b3cbdf; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#93b7d5;stroke:#93b7d5; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#b0c9de;stroke:#b0c9de; x=13.527272 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=121.745454 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p46bd8094d2)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_49fe2c9666 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p46bd8094d2&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.172093&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_37551935ca d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=-0 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=-0 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_37551935ca y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=13.527272 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=13.527272 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=13.527272 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ff71ac480)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_37551935ca y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5ff71ac480&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.252091&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_054e616e63 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#c0d3e4;stroke:#c0d3e4; x=-0 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#679bc7;stroke:#679bc7; x=-0 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#8cb2d3;stroke:#8cb2d3; x=-0 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_054e616e63 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=13.527272 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#83acd0;stroke:#83acd0; x=13.527272 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#dde5ed;stroke:#dde5ed; x=13.527272 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p12e8dca131)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_054e616e63 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p12e8dca131&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.326371&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_769611b7fa d=&amp;quot;M 105.818182 -53.847561
L 105.818182 -65.172561
L 92.290909 -70.835061
L 78.763637 -65.172561
L 78.763637 -53.847561
L 92.290909 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_769611b7fa y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4335479a65)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_769611b7fa y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4335479a65&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.401172&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_008d1c480a d=&amp;quot;M 105.818182 11.382627
L 105.818182 0.057627
L 92.290909 -5.604873
L 78.763637 0.057627
L 78.763637 11.382627
L 92.290909 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-0 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#d7e1eb;stroke:#d7e1eb; x=-0 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=-0 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#5992c3;stroke:#5992c3; x=-0 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=-0 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#6d9fc9;stroke:#6d9fc9; x=-0 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=-0 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-0 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=27.054545 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=135.272727 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_008d1c480a y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#e1e7ee;stroke:#e1e7ee; x=13.527272 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=13.527272 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=13.527272 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=13.527272 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=13.527272 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=13.527272 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=13.527272 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=94.690909 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=229.963636 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4c591236f9)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_008d1c480a y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4c591236f9&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.480579&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_6ec5e6222e d=&amp;quot;M 105.818182 -7.249038
L 105.818182 -18.574038
L 92.290909 -24.236538
L 78.763637 -18.574038
L 78.763637 -7.249038
L 92.290909 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-0 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#cedce8;stroke:#cedce8; x=-0 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#9cbcd8;stroke:#9cbcd8; x=-0 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#4f8cc0;stroke:#4f8cc0; x=-0 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#5f96c5;stroke:#5f96c5; x=-0 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#4988be;stroke:#4988be; x=-0 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=-0 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=-0 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_6ec5e6222e y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#dce4ec;stroke:#dce4ec; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#ccdae7;stroke:#ccdae7; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#98bad7;stroke:#98bad7; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=13.527272 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5f5a27fbc0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_6ec5e6222e y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5f5a27fbc0&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.558279&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_812c184415 d=&amp;quot;M 105.818182 3.823204
L 105.818182 -7.501796
L 92.290909 -13.164296
L 78.763637 -7.501796
L 78.763637 3.823204
L 92.290909 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-0 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#d4dfea;stroke:#d4dfea; x=-0 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=-0 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#4a88be;stroke:#4a88be; x=-0 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=-0 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=-0 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#4c8abf;stroke:#4c8abf; x=-0 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-0 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=54.109091 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=297.6 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_812c184415 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_812c184415 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=13.527272 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=13.527272 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=13.527272 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=13.527272 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=13.527272 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=13.527272 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=13.527272 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=94.690909 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pba4146bac4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_812c184415 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pba4146bac4&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.637669&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_e157cdcfeb d=&amp;quot;M 105.818182 -171.523764
L 105.818182 -182.848764
L 92.290909 -188.511264
L 78.763637 -182.848764
L 78.763637 -171.523764
L 92.290909 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=-0 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#8bb1d3;stroke:#8bb1d3; x=-0 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#5a93c3;stroke:#5a93c3; x=-0 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=-0 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=-0 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-0 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_e157cdcfeb y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#a5c2db;stroke:#a5c2db; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#c8d8e6;stroke:#c8d8e6; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p38ccab14fd)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_e157cdcfeb y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p38ccab14fd&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.718224&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_d67623a67c d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-0 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d67623a67c y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#e7ebf0;stroke:#e7ebf0; x=13.527272 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pcbbcf18662)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d67623a67c y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pcbbcf18662&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.799151&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_535fef1172 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_535fef1172 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdd5da211da)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_535fef1172 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pdd5da211da&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_newsnow-interactions_newsnow_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.881376&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(141.538413 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(193.566385 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(245.594357 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(297.622328 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(349.6503 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(401.678272 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.706244 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(505.734216 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(269.213359 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_0b7c63250e d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_0b7c63250e y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p64746189c8)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_0b7c63250e y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p64746189c8&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions-interactions_snowdepth&amp;gt;&amp;lt;div class=&amp;quot;row variable&amp;quot; style=&amp;quot;border: 0px;&amp;quot;&amp;gt;&amp;lt;div class=col-sm-3&amp;gt;&amp;lt;select class=&amp;quot;form-control multiple&amp;quot; role=tablist id=select- multiple&amp;gt;&amp;lt;option role=presentation class=active data-target=#interactions_snowdepth-interactions_snowdepth_winddir aria-controls=interactions_snowdepth-interactions_snowdepth_winddir role=tab data-toggle=tab&amp;gt;wind_dir &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_windspeed aria-controls=interactions_snowdepth-interactions_snowdepth_windspeed role=tab data-toggle=tab&amp;gt;wind_speed &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_windgust aria-controls=interactions_snowdepth-interactions_snowdepth_windgust role=tab data-toggle=tab&amp;gt;wind_gust &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_visib aria-controls=interactions_snowdepth-interactions_snowdepth_visib role=tab data-toggle=tab&amp;gt;visib &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_tempmax aria-controls=interactions_snowdepth-interactions_snowdepth_tempmax role=tab data-toggle=tab&amp;gt;temp_max &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_tempmin aria-controls=interactions_snowdepth-interactions_snowdepth_tempmin role=tab data-toggle=tab&amp;gt;temp_min &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_tempave aria-controls=interactions_snowdepth-interactions_snowdepth_tempave role=tab data-toggle=tab&amp;gt;temp_ave &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_tempdeparture aria-controls=interactions_snowdepth-interactions_snowdepth_tempdeparture role=tab data-toggle=tab&amp;gt;temp_departure &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_ppt aria-controls=interactions_snowdepth-interactions_snowdepth_ppt role=tab data-toggle=tab&amp;gt;ppt &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_newsnow aria-controls=interactions_snowdepth-interactions_snowdepth_newsnow role=tab data-toggle=tab&amp;gt;new_snow &amp;lt;/option&amp;gt;&amp;lt;option role=presentation data-target=#interactions_snowdepth-interactions_snowdepth_snowdepth aria-controls=interactions_snowdepth-interactions_snowdepth_snowdepth role=tab data-toggle=tab&amp;gt;snow_depth &amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tab-content col-sm-9&amp;quot;&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=interactions_snowdepth-interactions_snowdepth_winddir&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:30.963347&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 298.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 260.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 223.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 185.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 147.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 72.238906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 217.491484)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_a872601a13 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#4082bb;stroke:#4082bb; x=-0 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#b1cadf;stroke:#b1cadf; x=-0 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#aec7de;stroke:#aec7de; x=-0 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=-0 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#97b9d6;stroke:#97b9d6; x=-0 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#4e8bc0;stroke:#4e8bc0; x=-0 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=-0 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#a4c1db;stroke:#a4c1db; x=-0 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=81.163636 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=135.272727 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=270.545454 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=324.654545 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_a872601a13 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#5891c3;stroke:#5891c3; x=13.527272 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#b4cbe0;stroke:#b4cbe0; x=13.527272 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=13.527272 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=13.527272 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#a6c2db;stroke:#a6c2db; x=13.527272 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#689bc8;stroke:#689bc8; x=13.527272 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=13.527272 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#a9c4dc;stroke:#a9c4dc; x=13.527272 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=148.8 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=202.909091 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=338.181818 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=338.181818 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=392.290909 xlink:href=#C0_0_a872601a13 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p4fb21c75c4)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_a872601a13 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p4fb21c75c4&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_windspeed&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.039633&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.755431)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.021956)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 232.288482)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 197.555007)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.821532)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 128.088057)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.354582)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 58.621107)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 226.363672)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_17d39b0449 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=-0 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=-0 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=-0 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-0 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_17d39b0449 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#5b93c4;stroke:#5b93c4; x=13.527272 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=13.527272 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pdc26f2fa01)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_17d39b0449 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pdc26f2fa01&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_windgust&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.115486&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 276.123806)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 215.758706)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 155.393606)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.028506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.062969 221.774609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_bac8f9a3d7 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#c3d4e4;stroke:#c3d4e4; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#92b6d5;stroke:#92b6d5; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#d6e0ea;stroke:#d6e0ea; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_bac8f9a3d7 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#5b93c4;stroke:#5b93c4; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p672800973f)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_bac8f9a3d7 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p672800973f&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_visib&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.184934&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 340.068845)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 284.992858)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 229.91687)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 174.840882)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 119.764894)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 208.012578)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_fe359a34c3 d=&amp;quot;M 105.818182 -53.847561
L 105.818182 -65.172561
L 92.290909 -70.835061
L 78.763637 -65.172561
L 78.763637 -53.847561
L 92.290909 -48.185061
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=-0 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=-0 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=-0 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=324.654545 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=392.420061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=358.445061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=324.470061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=290.495061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=256.520061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=222.545061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=188.570061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=154.595061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_fe359a34c3 y=120.620061 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=375.432561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=341.457561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=307.482561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=273.507561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=239.532561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=205.557561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=171.582561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5fba8841bb)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_fe359a34c3 y=137.607561 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5fba8841bb&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_tempmax&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.255113&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 302.083843)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 267.67878)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 233.273716)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 198.868653)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 164.46359)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 130.058527)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 95.653463)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.817188 61.2484)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.630938 222.684687)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_18f20195b1 d=&amp;quot;M 105.818182 11.382627
L 105.818182 0.057627
L 92.290909 -5.604873
L 78.763637 0.057627
L 78.763637 11.382627
L 92.290909 17.045127
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-0 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-0 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#aac5dd;stroke:#aac5dd; x=-0 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#6499c6;stroke:#6499c6; x=-0 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=-0 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#6d9fc9;stroke:#6d9fc9; x=-0 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#5f95c5;stroke:#5f95c5; x=-0 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=-0 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=81.163636 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=135.272727 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=216.436363 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=270.545454 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=270.545454 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=324.654545 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=327.189873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=405.818181 xlink:href=#C0_0_18f20195b1 y=293.214873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=259.239873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=225.264873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=191.289873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=157.314873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=123.339873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=89.364873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_18f20195b1 y=55.389873 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=13.527272 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=13.527272 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#b5cce0;stroke:#b5cce0; x=13.527272 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#a3c0da;stroke:#a3c0da; x=13.527272 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#8fb4d4;stroke:#8fb4d4; x=13.527272 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#87afd1;stroke:#87afd1; x=13.527272 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=13.527272 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=67.636363 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=338.181818 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=310.202373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=276.227373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=242.252373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=208.277373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=174.302373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=140.327373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=106.352373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5c9ce188d5)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_18f20195b1 y=72.377373 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5c9ce188d5&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_tempmin&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.330242&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 344.851983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 303.036599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 261.221214)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 219.405829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 177.590445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 135.77506)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 93.959675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 52.144291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.156719)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_d28f250091 d=&amp;quot;M 105.818182 -7.249038
L 105.818182 -18.574038
L 92.290909 -24.236538
L 78.763637 -18.574038
L 78.763637 -7.249038
L 92.290909 -1.586538
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=-0 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#d3dfe9;stroke:#d3dfe9; x=-0 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=-0 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#548ec1;stroke:#548ec1; x=-0 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#5f96c5;stroke:#5f96c5; x=-0 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#4988be;stroke:#4988be; x=-0 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#8db3d3;stroke:#8db3d3; x=-0 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#dbe4ec;stroke:#dbe4ec; x=-0 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=135.272727 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=135.272727 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=216.436363 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=270.545454 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=345.821538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=405.818181 xlink:href=#C0_0_d28f250091 y=311.846538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=277.871538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=243.896538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=209.921538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=175.946538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=141.971538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=107.996538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_d28f250091 y=74.021538 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#cddbe7;stroke:#cddbe7; x=13.527272 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#a7c3dc;stroke:#a7c3dc; x=13.527272 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=13.527272 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#bacfe2;stroke:#bacfe2; x=13.527272 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#acc6dd;stroke:#acc6dd; x=13.527272 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#76a4cc;stroke:#76a4cc; x=13.527272 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#c3d5e4;stroke:#c3d5e4; x=13.527272 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#e4e9ef;stroke:#e4e9ef; x=67.636363 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=148.8 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=202.909091 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=338.181818 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=328.834038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=294.859038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=260.884038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=226.909038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=192.934038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=158.959038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=124.984038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p3dc5fb6874)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_d28f250091 y=91.009038 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p3dc5fb6874&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_tempave&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.404575&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 321.17623)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 282.89454)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 244.61285)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 206.33116)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 168.04947)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 129.767779)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 91.486089)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 53.204399)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.191875 221.161875)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_4b2987fd64 d=&amp;quot;M 105.818182 3.823204
L 105.818182 -7.501796
L 92.290909 -13.164296
L 78.763637 -7.501796
L 78.763637 3.823204
L 92.290909 9.485704
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-0 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#d8e2eb;stroke:#d8e2eb; x=-0 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#b1c9df;stroke:#b1c9df; x=-0 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#558fc2;stroke:#558fc2; x=-0 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#6e9fca;stroke:#6e9fca; x=-0 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#6a9dc8;stroke:#6a9dc8; x=-0 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#4c8abf;stroke:#4c8abf; x=-0 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e0e7ee;stroke:#e0e7ee; x=-0 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=334.749296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=300.774296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=266.799296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=232.824296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=198.849296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=164.874296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=130.899296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=96.924296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_4b2987fd64 y=62.949296 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#dfe6ed;stroke:#dfe6ed; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#b7cde1;stroke:#b7cde1; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#c5d6e5;stroke:#c5d6e5; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#a8c4dc;stroke:#a8c4dc; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#afc8de;stroke:#afc8de; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#98b9d7;stroke:#98b9d7; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#cedbe8;stroke:#cedbe8; x=13.527272 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=148.8 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#e9ecf0;stroke:#e9ecf0; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=317.761796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=283.786796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=249.811796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=215.836796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=181.861796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=147.886796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=113.911796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p725406710b)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_4b2987fd64 y=79.936796 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p725406710b&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_tempdeparture&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.478345&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 341.86517)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(44.5375 282.128906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 222.392643)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 162.656379)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(50.378125 102.920115)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(38.35125 235.836562)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_9e139568af d=&amp;quot;M 105.818182 -171.523764
L 105.818182 -182.848764
L 92.290909 -188.511264
L 78.763637 -182.848764
L 78.763637 -171.523764
L 92.290909 -165.861264
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#d9e3eb;stroke:#d9e3eb; x=-0 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#8eb3d4;stroke:#8eb3d4; x=-0 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#5690c2;stroke:#5690c2; x=-0 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#adc7dd;stroke:#adc7dd; x=-0 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#b7cde0;stroke:#b7cde0; x=-0 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#e8ecf0;stroke:#e8ecf0; x=-0 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=-0 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=135.272727 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=216.436363 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=270.545454 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=510.096264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=476.121264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=405.818181 xlink:href=#C0_0_9e139568af y=442.146264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=408.171264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=374.196264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=340.221264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=306.246264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=272.271264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_9e139568af y=238.296264 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#e6ebef;stroke:#e6ebef; x=13.527272 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#dae3ec;stroke:#dae3ec; x=13.527272 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#9ebdd9;stroke:#9ebdd9; x=13.527272 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#9dbdd8;stroke:#9dbdd8; x=13.527272 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#bdd1e3;stroke:#bdd1e3; x=13.527272 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#c6d7e5;stroke:#c6d7e5; x=13.527272 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#e2e8ee;stroke:#e2e8ee; x=13.527272 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#eaedf1;stroke:#eaedf1; x=13.527272 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=67.636363 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=67.636363 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=202.909091 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=202.909091 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=338.181818 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=338.181818 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=493.108764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=459.133764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=425.158764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=391.183764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=357.208764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=323.233764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=289.258764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p6b2a9af8f0)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_9e139568af y=255.283764 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p6b2a9af8f0&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_ppt&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.548613&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 301.281652)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 266.074398)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 230.867145)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 195.659891)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 160.452637)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 125.245383)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 90.038129)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(47.6 54.830875)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(41.41375 204.655)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_c995ae0110 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#e7ecf0;stroke:#e7ecf0; x=-0 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=-0 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=-0 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eceef1;stroke:#eceef1; x=81.163636 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_c995ae0110 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#e5eaef;stroke:#e5eaef; x=13.527272 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#ebeef1;stroke:#ebeef1; x=13.527272 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=13.527272 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p1690263cca)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_c995ae0110 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p1690263cca&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_newsnow&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.625108&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 301.642752)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 266.796599)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 231.950445)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 197.104291)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 162.258137)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 127.411983)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 92.565829)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 57.719675)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 222.996641)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_68f061521f d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=81.163636 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=135.272727 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=270.545454 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=324.654545 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_68f061521f y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=13.527272 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe3a01eed1c)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_68f061521f y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pe3a01eed1c&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=interactions_snowdepth-interactions_snowdepth_snowdepth&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.700031&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 346.5
L 518.4 346.5
L 518.4 47.52
L 72 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(89.510441 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(157.146804 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(224.783168 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(292.419531 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-51 d=&amp;quot;M 4.203125 18.890625
L 12.984375 20.0625
Q 14.5 12.59375 18.140625 9.296875
Q 21.78125 6 27 6
Q 33.203125 6 37.46875 10.296875
Q 41.75 14.59375 41.75 20.953125
Q 41.75 27 37.796875 30.921875
Q 33.84375 34.859375 27.734375 34.859375
Q 25.25 34.859375 21.53125 33.890625
L 22.515625 41.609375
Q 23.390625 41.5 23.921875 41.5
Q 29.546875 41.5 34.03125 44.421875
Q 38.53125 47.359375 38.53125 53.46875
Q 38.53125 58.296875 35.25 61.46875
Q 31.984375 64.65625 26.8125 64.65625
Q 21.6875 64.65625 18.265625 61.421875
Q 14.84375 58.203125 13.875 51.765625
L 5.078125 53.328125
Q 6.6875 62.15625 12.390625 67.015625
Q 18.109375 71.875 26.609375 71.875
Q 32.46875 71.875 37.390625 69.359375
Q 42.328125 66.84375 44.9375 62.5
Q 47.5625 58.15625 47.5625 53.265625
Q 47.5625 48.640625 45.0625 44.828125
Q 42.578125 41.015625 37.703125 38.765625
Q 44.046875 37.3125 47.5625 32.6875
Q 51.078125 28.078125 51.078125 21.140625
Q 51.078125 11.765625 44.234375 5.25
Q 37.40625 -1.265625 26.953125 -1.265625
Q 17.53125 -1.265625 11.296875 4.34375
Q 5.078125 9.96875 4.203125 18.890625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(360.055895 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(427.692258 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(495.328622 364.157812)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(265.540391 378.018906)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 336.488906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 291.188906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 245.888906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 200.588906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-51 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 155.288906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 109.988906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(55.939062 64.688906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(49.752812 226.669609)rotate(-90)scale(0.11 -0.11)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=PolyCollection_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=C0_0_1fcd4eb0b0 d=&amp;quot;M 105.818182 -57.4275
L 105.818182 -68.7525
L 92.290909 -74.415
L 78.763637 -68.7525
L 78.763637 -57.4275
L 92.290909 -51.765
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#337ab7;stroke:#337ab7; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=-0 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=27.054545 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=54.109091 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=81.163636 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=108.218181 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=135.272727 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=162.327272 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=189.381818 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=216.436363 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=243.490909 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=270.545454 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=297.6 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=324.654545 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=351.709091 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=378.763636 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=396 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=362.025 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=328.05 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=294.075 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=260.1 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=226.125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=192.15 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=158.175 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=405.818181 xlink:href=#C0_0_1fcd4eb0b0 y=124.2 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=13.527272 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=40.581818 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=67.636363 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=94.690909 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=121.745454 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#edeff2;stroke:#edeff2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=148.8 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=175.854545 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=202.909091 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=229.963636 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#eff0f2;stroke:#eff0f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=257.018181 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=284.072727 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=311.127272 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#eef0f2;stroke:#eef0f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=338.181818 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=365.236363 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=379.0125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=345.0375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=311.0625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=277.0875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=243.1125 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=209.1375 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=175.1625 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pae0f5f5338)&amp;gt;&amp;lt;use style=fill:#f0f1f2;stroke:#f0f1f2; x=392.290909 xlink:href=#C0_0_1fcd4eb0b0 y=141.1875 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 72 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 518.4 346.5
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 346.5
L 518.4 346.5
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 72 47.52
L 518.4 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pae0f5f5338&amp;gt;&amp;lt;rect height=298.98 width=446.4 x=72 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=correlations&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Correlations&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;button id=toggle-correlation-description class=&amp;quot;btn btn-default btn-sm&amp;quot; style=&amp;quot;float: right&amp;quot; data-toggle=collapse&amp;gt;Toggle correlation descriptions&amp;lt;/button&amp;gt;&amp;lt;script&amp;gt;
var waitForJQuery = setInterval(function () {
if (typeof $ != 'undefined') {
$(function() {
$('#toggle-correlation-description').click(function () {
$('.correlation-description').toggle();
$('.correlation-diagram').toggleClass('col-sm-6').toggleClass('col-sm-12');
}).click();
});
clearInterval(waitForJQuery);
}
}, 10);
&amp;lt;/script&amp;gt;&amp;lt;div style=display:inline&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#correlations_tab-pearson aria-controls=correlations_tab-pearson role=tab data-toggle=tab&amp;gt;Pearson's r&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#correlations_tab-spearman aria-controls=correlations_tab-spearman role=tab data-toggle=tab&amp;gt;Spearman's ρ&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#correlations_tab-kendall aria-controls=correlations_tab-kendall role=tab data-toggle=tab&amp;gt;Kendall's τ&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#correlations_tab-phi_k aria-controls=correlations_tab-phi_k role=tab data-toggle=tab&amp;gt;Phik (φk)&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=correlations_tab-pearson&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-diagram&amp;quot;&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:34.116251&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
L 429.12 47.52
L 159.84 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pc1ef36148e)&amp;gt;&amp;lt;image height=270 id=image5c7cfea771 transform=&amp;quot;scale(1 -1)translate(0 -270)&amp;quot; width=270 x=159.84 y=-46.8 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAQ4AAAEOCAYAAAB4sfmlAAAGVUlEQVR4nO3dvYoldh3G8efMnNnZnX2Jm2WzQUWigiyawtJGU3gJXoGkk7i1YCGCgmAX06awyAUItopvla0GXURTiW6G3WQyb5nZ82LhFTwDPyTy+VzAw2GY8z3/6v9fHB6dbDNgPbL6X5eT40PuXt8d2V3+4Z2R3STJej23PWTvC6+O7K4efGlkN0k+2jkY2f3Ma98d2U2SnbFl4P+WcAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1BbPDs+HXlrYHexmJhNkqy3n7znEe4c/mVkd7F+PrKbJNudmScdFpu5ZxfWBy+O7B7f/uzIbpK8/I03Rnb/+dufjewmThzAFQgHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiA2vLs+WZk+OWjv43sJsnp/Ydj21NW7707srv92rdGdpPk6cXMbfK39uZ+r66vz0d2p24iT5J//+6tkd2b69OR3cSJA7gC4QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqC2OD89GbkDfzXYpL3Lk7HtKdvltZHdn7/7wchukrx0c39k9+RyNbKbJK+//oOR3ePf/HRkN0l2Tp/O7B4fjuwmThzAFQgHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiA2nK7mGnHtaGbm5Nk9/jJ2PaUZ/cejuw++s6PRnaTZLGzO7K7WT0f2U2St9/+4cjux7s3RnaT5PbZs5Hdy3/8eWQ3ceIArkA4gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqC3X26Hhy7OZ4SQZetJh0o3lzGfev3N/ZDdJPv5w5hmKneXeyG6S3Lq2HNk9eb4Z2U2SW0PPUEz65H0Dgf854QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1BbLhczw5uDuzPDSXYujse2pxxdrEd2p24iT5Lrn3owsnvx0eHIbpK8f3oxsntv/87IbpIsNjP/G9mduz3diQOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAC1xcXTf20nhv90uj8xmyR56ebe2PaUL37z0cjue79+c2Q3SV7Yn7le/3y1GdlNkts7q5HdxR9/MbKbJMvPf2Vk9/zBl0d2EycO4AqEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQG3x+MnRyC3nv3x8ODGbJPneox+PbU/5+69mbiP/9NHjkd0kyWLod2U7d8v56u7nRnYv9m6N7CbJejvyFczJ5dzf2YkDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxAbfHh8el2Yvj+19+YmE2S/OTN749tT3ntlRdHdl+9vRrZTZKdsw9GdrfXDkZ2k+Ty4N7I7o33/zqymySn9x+O7J6vNiO7iRMHcAXCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQG2x99VvjzyPcPj7tyZmkyRPzuaeBJjyyvJsZHdz44WR3SRZjfxnJLuLmd0kWWxnngR4ejH0x0hysDfz+73ezH1mJw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBq/wEKu8QMlFg3cwAAAABJRU5ErkJggg==&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(173.586563 396.239062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.085156 364.539062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(218.525156 380.670312)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.906563 372.326562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(263.405156 347.304688)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(285.845156 373.98125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(308.285156 371.203125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.725156 371.2125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(353.165156 397.89375)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_10&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(375.605156 341.2)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_11&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(398.045156 374.548437)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_12&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(420.485156 381.226562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(80.400938 62.318906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(112.100938 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.969688 107.198906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(104.313438 129.638906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(129.335313 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.65875 174.518906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.436875 196.958906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.4275 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_21&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(78.74625 241.838906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_10&amp;gt;&amp;lt;g id=text_22&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(135.44 264.278906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_11&amp;gt;&amp;lt;g id=text_23&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.091563 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_12&amp;gt;&amp;lt;g id=text_24&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.413438 309.158906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 159.84 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 429.12 316.8
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 47.52
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_2&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#pb72fa829d7) style=fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.01; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_3 /&amp;gt;&amp;lt;g id=matplotlib.axis_4&amp;gt;&amp;lt;g id=ytick_13&amp;gt;&amp;lt;g id=line2d_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=m0a84e9aa16 style=stroke:#262626; d=&amp;quot;M 0 0
L 3.5 0
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=316.8 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_25&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 320.378906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_14&amp;gt;&amp;lt;g id=line2d_2&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=283.14 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_26&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_15&amp;gt;&amp;lt;g id=line2d_3&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=249.48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_27&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 253.058906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_16&amp;gt;&amp;lt;g id=line2d_4&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=215.82 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_28&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_17&amp;gt;&amp;lt;g id=line2d_5&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=182.16 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_29&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 185.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_18&amp;gt;&amp;lt;g id=line2d_6&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=148.5 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_30&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_19&amp;gt;&amp;lt;g id=line2d_7&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=114.84 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_31&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 118.418906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_20&amp;gt;&amp;lt;g id=line2d_8&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=81.18 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_32&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_21&amp;gt;&amp;lt;g id=line2d_9&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0a84e9aa16 y=47.52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_33&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 51.098906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;image height=269 id=imagea2488309e2 transform=&amp;quot;scale(1 -1)translate(0 -269)&amp;quot; width=14 x=451 y=-48 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAA4AAAENCAYAAAA/q1TLAAABhElEQVR4nO2ZSxLDIAxDzecePV7vv29Cb5DF02BGge7fyLKFQ9Lyjc8I8OutECyit8LIozhFsTJBK48+inQaa5qDwdfP0UmxUrDAWnulYGnsgKwotcJSheYwkO8cPA6hq3iO2ckRIpcectrVBQFIXx17ZJUqwi3Hd47QnHSQPgJKaxSkIeelGnU1G+RZ9fEo3HOyQ05B4YK0wRxLhXMMDmbvVaFUGnLq8ZT6AAoBSPao7Jz0Y3U2wARwwbEqVJGCI10x6McuHLkVHrPvOVsEIN8j3gA2kTsBmKQIPQ70Z3BEvyHZoaCwrG7qcVCPXJFxSzwyQSlyWNHIY/KxUrpKFYN6zE4O3zlWzYGKFzwegiJfyDt4RFz0C5KKR8RJc3TxqNxzqEfanAVzPB4fQOzxgFuDfOf8bDxucqzYfWVBqU7J8QEHvudgRfzGmr6suEf6FsC/PKQHgCcnOwBeIUfcCcAckHZV+RDk4rGP+7IBL59SfcDbp9QNAiDsHPoW4BS59wcAg385ime8vkq1wwAAAABJRU5ErkJggg==&amp;quot;/&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pc1ef36148e&amp;gt;&amp;lt;rect height=269.28 width=269.28 x=159.84 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;clippath id=pb72fa829d7&amp;gt;&amp;lt;rect height=269.28 width=13.464 x=451.44 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-description&amp;quot;&amp;gt;&amp;lt;div style=padding:20px class=text-muted&amp;gt;&amp;lt;h3&amp;gt;Pearson's r&amp;lt;/h3&amp;gt;The Pearson's correlation coefficient (&amp;lt;em&amp;gt;r&amp;lt;/em&amp;gt;) is a measure of linear correlation between two variables. It's value lies between -1 and +1, -1 indicating total negative linear correlation, 0 indicating no linear correlation and 1 indicating total positive linear correlation. Furthermore, &amp;lt;em&amp;gt;r&amp;lt;/em&amp;gt; is invariant under separate changes in location and scale of the two variables, implying that for a linear function the angle to the x-axis does not affect &amp;lt;em&amp;gt;r&amp;lt;/em&amp;gt;.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;To calculate &amp;lt;em&amp;gt;r&amp;lt;/em&amp;gt; for two variables &amp;lt;em&amp;gt;X&amp;lt;/em&amp;gt; and &amp;lt;em&amp;gt;Y&amp;lt;/em&amp;gt;, one divides the covariance of &amp;lt;em&amp;gt;X&amp;lt;/em&amp;gt; and &amp;lt;em&amp;gt;Y&amp;lt;/em&amp;gt; by the product of their standard deviations. &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=correlations_tab-spearman&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-diagram&amp;quot;&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:34.222696&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
L 429.12 47.52
L 159.84 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p50860dfcd1)&amp;gt;&amp;lt;image height=270 id=imageee78c4bc17 transform=&amp;quot;scale(1 -1)translate(0 -270)&amp;quot; width=270 x=159.84 y=-46.8 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAQ4AAAEOCAYAAAB4sfmlAAAGUElEQVR4nO3dP4ulZx3G8evMOTM7OxmycWAT2CZaWKiNCIIBDdr4DkQsLKJgFUglCIqFaKNVllQWWlgFtowoKWwiCFqLisE/Vdw1WbPZM2dm588ZG9/ANfBDlM/nBVwczpz5Pnf13IuHj4+vMmBzvp2YTZIsF4ux7SnP3NgZ2b184+7IbpLk4nxue8j+p74wsntx5+Mju0ly7+3jkd2Xvvbdkd0kmfk1A//XhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOIDaaqockxcYrM8uB9dnHJ2/N7J7tl6P7CbJ8uBgZHd7ejqymyTZ3RuZ/c2Dud/c1DUGP/3J90Z2EycO4BqEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQG3x93cfX00M3/nH7yZmkyRPPvKZse0xP787Mrv34pdGdpPk0c3nRnYPdy5GdpMki5ln4dOffWVkN0nevPfDkd0Xnl2O7CZOHMA1CAdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAC1xcnxeuR6hEmLs81/+yP0lquR2XtvH4/sJsmzT+2N7K7PLkd2k+TLX/32yO4Hv351ZDdJdu//cWb4/GxmN04cwDUIB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gNrqcqgdu+v7I7tJsnPyaGx7ygdHHx3Z/fo3vjWyO2l7cT62/frPfjAzfLWd2U2yeeuNkd2dvd2R3cSJA7gG4QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqC2uryaGb5xdjIznCSL/73eHawWI7t7h0cju0ly+v7MFRc7q7nX9h/uLUd219vVyG6S3NzfnxneXs7sxokDuAbhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUFvtDqVje/ChmeEkO49n3r496eHpzBunp95EniT7zzw3snu2fjiymyQPjs9Gdm+drEd2k+RksxnZXR4ejuwmThzANQgHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAAtcWT9965mhj+/WZ/YjZJ8vSN5dj2lI998ZWR3b/96u7IbpIc7c98z5uLkZ9ckuSpPBnZvfjlj0d2k2T3818Z2d0e3h7ZTZw4gGsQDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwALXFn+4/Gnnl9C/+/O7EbJLkmy9/f2x7yh/efHVk9/nNX0Z2kySLoefK1XZmN8nlrTsjuxd7hyO7SfLO+nxk93Bv7jYAJw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAC1xfuPj68mhm9/7uWJ2STJj177ztj2lBefPxrZ/cTB6chukuxs/jWyu927ObKbJNvD2yO7q7/+dmQ3SR7c+fTI7sg/9n84cQA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqC22P3kSyNvUf/nW69NzCZJ7m8uxranfHi1Gdm9vHlrZDdJzrczu8vFzG6SLDPzoR+czF02cOvGzPN76M+XxIkDuAbhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUPs3DS62Er/E/woAAAAASUVORK5CYII=&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(173.586563 396.239062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.085156 364.539062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(218.525156 380.670312)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.906563 372.326562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(263.405156 347.304688)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(285.845156 373.98125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(308.285156 371.203125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.725156 371.2125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(353.165156 397.89375)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_10&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(375.605156 341.2)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_11&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(398.045156 374.548437)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_12&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(420.485156 381.226562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(80.400938 62.318906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(112.100938 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.969688 107.198906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(104.313438 129.638906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(129.335313 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.65875 174.518906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.436875 196.958906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.4275 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_21&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(78.74625 241.838906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_10&amp;gt;&amp;lt;g id=text_22&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(135.44 264.278906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_11&amp;gt;&amp;lt;g id=text_23&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.091563 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_12&amp;gt;&amp;lt;g id=text_24&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.413438 309.158906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 159.84 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 429.12 316.8
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 47.52
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_2&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p4a13721f67) style=fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.01; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_3 /&amp;gt;&amp;lt;g id=matplotlib.axis_4&amp;gt;&amp;lt;g id=ytick_13&amp;gt;&amp;lt;g id=line2d_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=m0e47e49ec4 style=stroke:#262626; d=&amp;quot;M 0 0
L 3.5 0
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=316.8 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_25&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 320.378906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_14&amp;gt;&amp;lt;g id=line2d_2&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=283.14 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_26&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_15&amp;gt;&amp;lt;g id=line2d_3&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=249.48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_27&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 253.058906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_16&amp;gt;&amp;lt;g id=line2d_4&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=215.82 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_28&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_17&amp;gt;&amp;lt;g id=line2d_5&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=182.16 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_29&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 185.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_18&amp;gt;&amp;lt;g id=line2d_6&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=148.5 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_30&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_19&amp;gt;&amp;lt;g id=line2d_7&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=114.84 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_31&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 118.418906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_20&amp;gt;&amp;lt;g id=line2d_8&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=81.18 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_32&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_21&amp;gt;&amp;lt;g id=line2d_9&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m0e47e49ec4 y=47.52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_33&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 51.098906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;image height=269 id=imagefe2910cae0 transform=&amp;quot;scale(1 -1)translate(0 -269)&amp;quot; width=14 x=451 y=-48 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAA4AAAENCAYAAAA/q1TLAAABhElEQVR4nO2ZSxLDIAxDzecePV7vv29Cb5DF02BGge7fyLKFQ9Lyjc8I8OutECyit8LIozhFsTJBK48+inQaa5qDwdfP0UmxUrDAWnulYGnsgKwotcJSheYwkO8cPA6hq3iO2ckRIpcectrVBQFIXx17ZJUqwi3Hd47QnHSQPgJKaxSkIeelGnU1G+RZ9fEo3HOyQ05B4YK0wRxLhXMMDmbvVaFUGnLq8ZT6AAoBSPao7Jz0Y3U2wARwwbEqVJGCI10x6McuHLkVHrPvOVsEIN8j3gA2kTsBmKQIPQ70Z3BEvyHZoaCwrG7qcVCPXJFxSzwyQSlyWNHIY/KxUrpKFYN6zE4O3zlWzYGKFzwegiJfyDt4RFz0C5KKR8RJc3TxqNxzqEfanAVzPB4fQOzxgFuDfOf8bDxucqzYfWVBqU7J8QEHvudgRfzGmr6suEf6FsC/PKQHgCcnOwBeIUfcCcAckHZV+RDk4rGP+7IBL59SfcDbp9QNAiDsHPoW4BS59wcAg385ime8vkq1wwAAAABJRU5ErkJggg==&amp;quot;/&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p50860dfcd1&amp;gt;&amp;lt;rect height=269.28 width=269.28 x=159.84 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;clippath id=p4a13721f67&amp;gt;&amp;lt;rect height=269.28 width=13.464 x=451.44 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-description&amp;quot;&amp;gt;&amp;lt;div style=padding:20px class=text-muted&amp;gt;&amp;lt;h3&amp;gt;Spearman's ρ&amp;lt;/h3&amp;gt;The Spearman's rank correlation coefficient (&amp;lt;em&amp;gt;ρ&amp;lt;/em&amp;gt;) is a measure of monotonic correlation between two variables, and is therefore better in catching nonlinear monotonic correlations than Pearson's &amp;lt;em&amp;gt;r&amp;lt;/em&amp;gt;. It's value lies between -1 and +1, -1 indicating total negative monotonic correlation, 0 indicating no monotonic correlation and 1 indicating total positive monotonic correlation.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;To calculate &amp;lt;em&amp;gt;ρ&amp;lt;/em&amp;gt; for two variables &amp;lt;em&amp;gt;X&amp;lt;/em&amp;gt; and &amp;lt;em&amp;gt;Y&amp;lt;/em&amp;gt;, one divides the covariance of the rank variables of &amp;lt;em&amp;gt;X&amp;lt;/em&amp;gt; and &amp;lt;em&amp;gt;Y&amp;lt;/em&amp;gt; by the product of their standard deviations. &amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=correlations_tab-kendall&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-diagram&amp;quot;&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:34.326898&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
L 429.12 47.52
L 159.84 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p24a322014d)&amp;gt;&amp;lt;image height=270 id=image9fadbc8cb6 transform=&amp;quot;scale(1 -1)translate(0 -270)&amp;quot; width=270 x=159.84 y=-46.8 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAQ4AAAEOCAYAAAB4sfmlAAAGRUlEQVR4nO3du4uldx3H8c8zc2ZnZ0d3TaLiBfEWRK0iWIgGKxsLDdgKQuqglZVgJVilSkwdEARBMIiFjYWXVSux8QYaL6TwspnAjpmd2zlzLPwLPgNfwsrr9Qd8WJ559n1+1fNbXvvPyTYDLjYjs0mSnWVsesyb93ZGdpdffW9kN0m264uZ4Z3dmd0ke48/MbK7fux9I7tJ8tLLD0Z2v/T010d2k2TmbQb+rwkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAAtdXDWI6Ty6s3+p9Qu3N+NLK7OT0Z2U2SZf/mzPDl0LULSba7N0Z2f3M0d93H1DUG337xGyO7iRMHcA3CAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoLY6vpj5Yvi7jv80spskZ2//8Nj2lKuf/mhkd/cTT43sJsnJ/ltGdg+WzchukqyXmd/CT3/qyyO7SfKzl54d2f3YY8vIbuLEAVyDcAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1BbTk9e384szzVpWZ+NbU/ZDj2PX99bj+wmye391cju6XrueoQnn/rqyO7xL54f2U2S1dHfRnaXzcXIbuLEAVyDcAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6itNkPtWJ0dj+wmyc7Fydj2lAeH7xjZ/fwz3xrZTZKd1Y2R3fuv/GFkN0nu/uDZmeHt1cxukvVv784M7838/RInDuAahAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOIDaajs0vGwuh5YfTvu7y8juo+//6Mhukvz9lz8c2b3zno+M7CbJwWp3ZPd0O7ObJAdT1xhcbWZ248QBXINwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqK2GPr6d7f7hzHCS5eRsbHvK/Yurkd2pL5EnyXs/+bmR3df++vuR3SQ5Pl+P7B6en4zsJsnmfOZ93jmY+z/oxAHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOIDacn70j+3E8MsXtyZmkySHew9f7x7/zFdGdl/5yfMju0ly58bMcz7fjLxySZL9XM4M//y7M7tJdj7+2ZHdqze9bWQ3ceIArkE4gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1Ja/3Dse+eT07/59MjGbJPnCF782tj3lzz9+bmT3nZf/HNlNkiwP3+/K1a1HRnbXuzdHdpPk3ul6ZHfyNoCH780A3nDCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUFvuv/5gOzH81iefmZhNknz/O98c257ywUdvjex+4HAzspsky/nJyO52d29kN0m2N2+P7O79648ju0ny6iMfGtue4sQB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiA2rL3xNMj1yO8eveFidkkydHpemx7yrt3Zq4a2BzcGdlNks3Im5EsM7NJkt1cjezeOxt6GElu35j5/Z55Ev/jxAHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEDtvy1fs7fcHbgYAAAAAElFTkSuQmCC&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(173.586563 396.239062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.085156 364.539062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(218.525156 380.670312)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.906563 372.326562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(263.405156 347.304688)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(285.845156 373.98125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(308.285156 371.203125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.725156 371.2125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(353.165156 397.89375)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_10&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(375.605156 341.2)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_11&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(398.045156 374.548437)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_12&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(420.485156 381.226562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(80.400938 62.318906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(112.100938 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.969688 107.198906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(104.313438 129.638906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(129.335313 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.65875 174.518906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.436875 196.958906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.4275 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_21&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(78.74625 241.838906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_10&amp;gt;&amp;lt;g id=text_22&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(135.44 264.278906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_11&amp;gt;&amp;lt;g id=text_23&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.091563 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_12&amp;gt;&amp;lt;g id=text_24&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.413438 309.158906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 159.84 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 429.12 316.8
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 47.52
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_2&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p1ca6742cb1) style=fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.01; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_3 /&amp;gt;&amp;lt;g id=matplotlib.axis_4&amp;gt;&amp;lt;g id=ytick_13&amp;gt;&amp;lt;g id=line2d_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=mc55b2882ac style=stroke:#262626; d=&amp;quot;M 0 0
L 3.5 0
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=316.8 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_25&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 320.378906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-8722 d=&amp;quot;M 52.828125 31.203125
L 5.5625 31.203125
L 5.5625 39.40625
L 52.828125 39.40625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_14&amp;gt;&amp;lt;g id=line2d_2&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=283.14 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_26&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_15&amp;gt;&amp;lt;g id=line2d_3&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=249.48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_27&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 253.058906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_16&amp;gt;&amp;lt;g id=line2d_4&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=215.82 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_28&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-8722 /&amp;gt;&amp;lt;use x=58.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=114.013672 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=141.796875 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=197.412109 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_17&amp;gt;&amp;lt;g id=line2d_5&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=182.16 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_29&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 185.738906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_18&amp;gt;&amp;lt;g id=line2d_6&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=148.5 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_30&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_19&amp;gt;&amp;lt;g id=line2d_7&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=114.84 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_31&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 118.418906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_20&amp;gt;&amp;lt;g id=line2d_8&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=81.18 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_32&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_21&amp;gt;&amp;lt;g id=line2d_9&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#mc55b2882ac y=47.52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_33&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 51.098906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=139.013672 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;image height=269 id=image5f070bc58b transform=&amp;quot;scale(1 -1)translate(0 -269)&amp;quot; width=14 x=451 y=-48 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAA4AAAENCAYAAAA/q1TLAAABhElEQVR4nO2ZSxLDIAxDzecePV7vv29Cb5DF02BGge7fyLKFQ9Lyjc8I8OutECyit8LIozhFsTJBK48+inQaa5qDwdfP0UmxUrDAWnulYGnsgKwotcJSheYwkO8cPA6hq3iO2ckRIpcectrVBQFIXx17ZJUqwi3Hd47QnHSQPgJKaxSkIeelGnU1G+RZ9fEo3HOyQ05B4YK0wRxLhXMMDmbvVaFUGnLq8ZT6AAoBSPao7Jz0Y3U2wARwwbEqVJGCI10x6McuHLkVHrPvOVsEIN8j3gA2kTsBmKQIPQ70Z3BEvyHZoaCwrG7qcVCPXJFxSzwyQSlyWNHIY/KxUrpKFYN6zE4O3zlWzYGKFzwegiJfyDt4RFz0C5KKR8RJc3TxqNxzqEfanAVzPB4fQOzxgFuDfOf8bDxucqzYfWVBqU7J8QEHvudgRfzGmr6suEf6FsC/PKQHgCcnOwBeIUfcCcAckHZV+RDk4rGP+7IBL59SfcDbp9QNAiDsHPoW4BS59wcAg385ime8vkq1wwAAAABJRU5ErkJggg==&amp;quot;/&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p24a322014d&amp;gt;&amp;lt;rect height=269.28 width=269.28 x=159.84 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;clippath id=p1ca6742cb1&amp;gt;&amp;lt;rect height=269.28 width=13.464 x=451.44 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-description&amp;quot;&amp;gt;&amp;lt;div style=padding:20px class=text-muted&amp;gt;&amp;lt;h3&amp;gt;Kendall's τ&amp;lt;/h3&amp;gt;Similarly to Spearman's rank correlation coefficient, the Kendall rank correlation coefficient (&amp;lt;em&amp;gt;τ&amp;lt;/em&amp;gt;) measures ordinal association between two variables. It's value lies between -1 and +1, -1 indicating total negative correlation, 0 indicating no correlation and 1 indicating total positive correlation. &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;To calculate &amp;lt;em&amp;gt;τ&amp;lt;/em&amp;gt; for two variables &amp;lt;em&amp;gt;X&amp;lt;/em&amp;gt; and &amp;lt;em&amp;gt;Y&amp;lt;/em&amp;gt;, one determines the number of concordant and discordant pairs of observations. &amp;lt;em&amp;gt;τ&amp;lt;/em&amp;gt; is given by the number of concordant pairs minus the discordant pairs divided by the total number of pairs.&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=correlations_tab-phi_k&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-diagram&amp;quot;&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=396pt version=1.1 viewbox=&amp;quot;0 0 576 396&amp;quot; width=576pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:34.429872&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 396
L 576 396
L 576 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
L 429.12 47.52
L 159.84 47.52
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#p5ec5213369)&amp;gt;&amp;lt;image height=270 id=image23ad81dbcf transform=&amp;quot;scale(1 -1)translate(0 -270)&amp;quot; width=270 x=159.84 y=-46.8 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAQ4AAAEOCAYAAAB4sfmlAAAGMklEQVR4nO3dPYum5R3G4fOZecYZxn1TVIxrIYsIYggSLG3EwnaxSJ/OIoVFUkvqRDAQJKn8BrKSaitBJKUE1EJZfEPZRFfjzq6zM87LYxHyAc6BPzpyHB/g5Ga45/fc1XUtvrp5e5UBn+0cTMwmSS5sro9tT9lcLkZ2//L2pyO7SbKYeeSsRt64//nVxfMju89eujCymyT/+ODrkd3fvfDHkd0kWRtbBn62hAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOIDacmr43q3Td4XBpH/9+/bI7vra0B0GSR65b3tk96tb+yO7SXJ26OqMLwav+5i6xuCvf3tpZDfxxQGcgHAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoLa59ubOaGP705t7EbJLkoTObY9tTrv13d2T37o250+R3D45GdreWc8+8tZz5LXzm+T+M7CbJP994eWT34rmNkd3EFwdwAsIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxAbfHlzdsj1yO89s71idkkyeXHHxjbnnJwPPJnzm9efmtkN0kWWYzsHh8fj+wmybU3r4zsvvn6n0Z2k+TG7vcju7f2Z663SHxxACcgHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrLg6OZ07e/HTq5OUnuHM6dkj1lsZg5Mfyjt6+O7CbJ2vpyZPdgd2dkN0kefebyyO7e4Dv37vWZv8fOncOR3cQXB3ACwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBteTxzO0KWazPXAZxWt/Znjqq/+76HR3aTZOeLD0d2N7bPjewmydrazG/h3uHRyG6S3H92c2T31p7rEYCfEOEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQW04NT52eniTrp/AE9alnnjqJPEnOXXxsZPe7G5+P7CbJKjMv3vbG+shuknxyY3dkdzX4P+iLA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwALWx6xF++YtzU9PZXD991yP8+vLvR3bfuvLnkd0kORq64+Ls5thrl6lX4+Nv78wMJ3n60r0ju08+eGZkN/HFAZyAcAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gtdw+OR4Zvf384spskTzz34tj2lPevvjKyu380cxJ5MnfK+Wo198wb6zO/hY/esz2ymyRby5mj2fcP5/7OvjiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUFh/+5+ZqYviJ516cmE2SvPr3l8a2p5y5azmy+971nZHdJFlbzOweHo+8ckmSC9t3jew+9fD5kd0kuXRha2T3m72jkd3EFwdwAsIB1IQDqAkHUBMOoCYcQE04gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxAbbHx5G9Hzqp//+orE7NJktXc6fpjtjc0+v+mrl1Iko31mfGd/eOR3SQ5v3n63o3T98TAj044gJpwADXhAGrCAdSEA6gJB1ATDqAmHEBNOICacAA14QBqwgHUhAOoCQdQEw6gJhxATTiAmnAANeEAasIB1H4ANP+w8V3K8P4AAAAASUVORK5CYII=&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(173.586563 396.239062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(196.085156 364.539062)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(218.525156 380.670312)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(240.906563 372.326562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(263.405156 347.304688)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(285.845156 373.98125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(308.285156 371.203125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(330.725156 371.2125)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(353.165156 397.89375)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_10&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(375.605156 341.2)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_11&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(398.045156 374.548437)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_12&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(420.485156 381.226562)rotate(-90)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(80.400938 62.318906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(112.100938 84.758906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.969688 107.198906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(104.313438 129.638906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(129.335313 152.078906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.65875 174.518906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.436875 196.958906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(105.4275 219.398906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_21&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(78.74625 241.838906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_10&amp;gt;&amp;lt;g id=text_22&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(135.44 264.278906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_11&amp;gt;&amp;lt;g id=text_23&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(102.091563 286.718906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_12&amp;gt;&amp;lt;g id=text_24&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(95.413438 309.158906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 159.84 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 429.12 316.8
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 316.8
L 429.12 316.8
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 159.84 47.52
L 429.12 47.52
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_2&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#peb67729900) style=fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.01; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_3 /&amp;gt;&amp;lt;g id=matplotlib.axis_4&amp;gt;&amp;lt;g id=ytick_13&amp;gt;&amp;lt;g id=line2d_1&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=m3009141cc8 style=stroke:#262626; d=&amp;quot;M 0 0
L 3.5 0
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m3009141cc8 y=316.8 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_25&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 320.378906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_14&amp;gt;&amp;lt;g id=line2d_2&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m3009141cc8 y=262.944 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_26&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 266.522906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_15&amp;gt;&amp;lt;g id=line2d_3&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m3009141cc8 y=209.088 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_27&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 212.666906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_16&amp;gt;&amp;lt;g id=line2d_4&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m3009141cc8 y=155.232 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_28&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 158.810906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_17&amp;gt;&amp;lt;g id=line2d_5&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m3009141cc8 y=101.376 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_29&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 104.954906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_18&amp;gt;&amp;lt;g id=line2d_6&amp;gt;&amp;lt;g&amp;gt;&amp;lt;use style=fill:#262626;stroke:#262626; x=464.904 xlink:href=#m3009141cc8 y=47.52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=text_30&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(475.404 51.098906)scale(0.1 -0.1)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;image height=269 id=imagee225006ce9 transform=&amp;quot;scale(1 -1)translate(0 -269)&amp;quot; width=14 x=451 y=-48 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAA4AAAENCAYAAAA/q1TLAAABU0lEQVR4nO2ZQRKEQAgD2a35/3PXm+4L9NCUwQjeU2EgE8D5/LbtCPCtQLCIBXGxDki5Dkj5ZbDUGeVZTdSRloMRtqijPtQEIzxkxgEgsMKsKJCGGjb3sUUdw+Z2ZBxAzoiBeq2qx5UevqoeV/S3wyg5BQ6wUyAfV+R13H1CxVntUEeeHJ9QEyKHQHmoBS2AOwAjdOodmdsht44Ce6TAqeMdQPnY6dQ7sHIYrmZ4kM8AerPyaXP60TrBKC5Hwa9g/RBYoNVhHEYtsEFyrJayYbyB0ah3WDHaCEA+BFYsZfqFRc7In0rlK1JBqHR/5G9zI4BzoPxZv2ApG+VcAm3m1RHAHYwVhoyBaq2Ocq4YfZ4tfHy1QnKMMJVVNTARKnucwYyZxkpDheucPjkZ5ehDHcYHMSas4/WMiQHJyTpsGH2U04RxJHcKjJ0xlvwI6qDV1zP+AScoEr8z60XRAAAAAElFTkSuQmCC&amp;quot;/&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path style=fill:none; d=&amp;quot;M 451.44 316.8
L 451.44 315.748125
L 451.44 48.571875
L 451.44 47.52
L 464.904 47.52
L 464.904 48.571875
L 464.904 315.748125
L 464.904 316.8
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p5ec5213369&amp;gt;&amp;lt;rect height=269.28 width=269.28 x=159.84 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;clippath id=peb67729900&amp;gt;&amp;lt;rect height=269.28 width=13.464 x=451.44 y=47.52 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;col-sm-6 correlation-description&amp;quot;&amp;gt;&amp;lt;div style=padding:20px class=text-muted&amp;gt;&amp;lt;h3&amp;gt;Phik (φk)&amp;lt;/h3&amp;gt;Phik (φk) is a new and practical correlation coefficient that works consistently between categorical, ordinal and interval variables, captures non-linear dependency and reverts to the Pearson correlation coefficient in case of a bivariate normal input distribution. There is extensive documentation available &amp;lt;a href=https://phik.readthedocs.io/en/latest/index.html&amp;gt;here&amp;lt;/a&amp;gt;.&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=missing&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Missing values&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;ul class=&amp;quot;nav nav-tabs&amp;quot; role=tablist&amp;gt;&amp;lt;li role=presentation class=active&amp;gt;&amp;lt;a href=#missing-bar aria-controls=missing-bar role=tab data-toggle=tab&amp;gt;Count&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;li role=presentation&amp;gt;&amp;lt;a href=#missing-matrix aria-controls=missing-matrix role=tab data-toggle=tab&amp;gt;Matrix&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;div class=tab-content&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12 active&amp;quot; id=missing-bar&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=360pt version=1.1 viewbox=&amp;quot;0 0 720 360&amp;quot; width=720pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:31.872593&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 360
L 720 360
L 720 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 252
L 648 252
L 648 72
L 72 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(51.453767 309.952831)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=133.300781 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=188.916016 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=244.53125 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;use x=300.146484 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=355.761719 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=411.376953 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(73.155366 332.451201)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(146.710652 303.311331)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(176.189873 318.139802)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(228.059741 310.469903)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(295.476235 287.468824)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(315.261796 311.990956)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(362.123249 309.437196)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(406.422323 309.445814)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_10&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(426.203575 333.972254)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_11&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(522.626363 281.857159)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_12&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(536.278877 312.512337)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_13&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(574.447777 318.651129)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(43.43 256.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-48 d=&amp;quot;M 4.15625 35.296875
Q 4.15625 48 6.765625 55.734375
Q 9.375 63.484375 14.515625 67.671875
Q 19.671875 71.875 27.484375 71.875
Q 33.25 71.875 37.59375 69.546875
Q 41.9375 67.234375 44.765625 62.859375
Q 47.609375 58.5 49.21875 52.21875
Q 50.828125 45.953125 50.828125 35.296875
Q 50.828125 22.703125 48.234375 14.96875
Q 45.65625 7.234375 40.5 3
Q 35.359375 -1.21875 27.484375 -1.21875
Q 17.140625 -1.21875 11.234375 6.203125
Q 4.15625 15.140625 4.15625 35.296875
z
M 13.1875 35.296875
Q 13.1875 17.671875 17.3125 11.828125
Q 21.4375 6 27.484375 6
Q 33.546875 6 37.671875 11.859375
Q 41.796875 17.71875 41.796875 35.296875
Q 41.796875 52.984375 37.671875 58.78125
Q 33.546875 64.59375 27.390625 64.59375
Q 21.34375 64.59375 17.71875 59.46875
Q 13.1875 52.9375 13.1875 35.296875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-46 d=&amp;quot;M 9.078125 0
L 9.078125 10.015625
L 19.09375 10.015625
L 19.09375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(43.43 220.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_3&amp;gt;&amp;lt;g id=text_16&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(43.43 184.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_4&amp;gt;&amp;lt;g id=text_17&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(43.43 148.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-54 d=&amp;quot;M 49.75 54.046875
L 41.015625 53.375
Q 39.84375 58.546875 37.703125 60.890625
Q 34.125 64.65625 28.90625 64.65625
Q 24.703125 64.65625 21.53125 62.3125
Q 17.390625 59.28125 14.984375 53.46875
Q 12.59375 47.65625 12.5 36.921875
Q 15.671875 41.75 20.265625 44.09375
Q 24.859375 46.4375 29.890625 46.4375
Q 38.671875 46.4375 44.84375 39.96875
Q 51.03125 33.5 51.03125 23.25
Q 51.03125 16.5 48.125 10.71875
Q 45.21875 4.9375 40.140625 1.859375
Q 35.0625 -1.21875 28.609375 -1.21875
Q 17.625 -1.21875 10.6875 6.859375
Q 3.765625 14.9375 3.765625 33.5
Q 3.765625 54.25 11.421875 63.671875
Q 18.109375 71.875 29.4375 71.875
Q 37.890625 71.875 43.28125 67.140625
Q 48.6875 62.40625 49.75 54.046875
z
M 13.875 23.1875
Q 13.875 18.65625 15.796875 14.5
Q 17.71875 10.359375 21.1875 8.171875
Q 24.65625 6 28.46875 6
Q 34.03125 6 38.03125 10.484375
Q 42.046875 14.984375 42.046875 22.703125
Q 42.046875 30.125 38.078125 34.390625
Q 34.125 38.671875 28.125 38.671875
Q 22.171875 38.671875 18.015625 34.390625
Q 13.875 30.125 13.875 23.1875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_5&amp;gt;&amp;lt;g id=text_18&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(43.43 112.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-56 d=&amp;quot;M 17.671875 38.8125
Q 12.203125 40.828125 9.5625 44.53125
Q 6.9375 48.25 6.9375 53.421875
Q 6.9375 61.234375 12.546875 66.546875
Q 18.171875 71.875 27.484375 71.875
Q 36.859375 71.875 42.578125 66.421875
Q 48.296875 60.984375 48.296875 53.171875
Q 48.296875 48.1875 45.671875 44.5
Q 43.0625 40.828125 37.75 38.8125
Q 44.34375 36.671875 47.78125 31.875
Q 51.21875 27.09375 51.21875 20.453125
Q 51.21875 11.28125 44.71875 5.03125
Q 38.234375 -1.21875 27.640625 -1.21875
Q 17.046875 -1.21875 10.546875 5.046875
Q 4.046875 11.328125 4.046875 20.703125
Q 4.046875 27.6875 7.59375 32.390625
Q 11.140625 37.109375 17.671875 38.8125
z
M 15.921875 53.71875
Q 15.921875 48.640625 19.1875 45.40625
Q 22.46875 42.1875 27.6875 42.1875
Q 32.765625 42.1875 36.015625 45.375
Q 39.265625 48.578125 39.265625 53.21875
Q 39.265625 58.0625 35.90625 61.359375
Q 32.5625 64.65625 27.59375 64.65625
Q 22.5625 64.65625 19.234375 61.421875
Q 15.921875 58.203125 15.921875 53.71875
z
M 13.09375 20.65625
Q 13.09375 16.890625 14.875 13.375
Q 16.65625 9.859375 20.171875 7.921875
Q 23.6875 6 27.734375 6
Q 34.03125 6 38.125 10.046875
Q 42.234375 14.109375 42.234375 20.359375
Q 42.234375 26.703125 38.015625 30.859375
Q 33.796875 35.015625 27.4375 35.015625
Q 21.234375 35.015625 17.15625 30.90625
Q 13.09375 26.8125 13.09375 20.65625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_6&amp;gt;&amp;lt;g id=text_19&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(43.43 76.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-46 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_3&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 83.076923 252
L 105.230769 252
L 105.230769 72
L 83.076923 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_4&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 127.384615 252
L 149.538462 252
L 149.538462 72
L 127.384615 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_5&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 171.692308 252
L 193.846154 252
L 193.846154 72
L 171.692308 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_6&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 216 252
L 238.153846 252
L 238.153846 72
L 216 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_7&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 260.307692 252
L 282.461538 252
L 282.461538 72
L 260.307692 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_8&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 304.615385 252
L 326.769231 252
L 326.769231 72
L 304.615385 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_9&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 348.923077 252
L 371.076923 252
L 371.076923 72
L 348.923077 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_10&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 393.230769 252
L 415.384615 252
L 415.384615 72
L 393.230769 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_11&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 437.538462 252
L 459.692308 252
L 459.692308 72
L 437.538462 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_12&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 481.846154 252
L 504 252
L 504 72
L 481.846154 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_13&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 526.153846 252
L 548.307692 252
L 548.307692 72
L 526.153846 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_14&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 570.461538 252
L 592.615385 252
L 592.615385 72
L 570.461538 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=patch_15&amp;gt;&amp;lt;path clip-path=url(#p2733c86433) style=fill:#337ab7;stroke:#ffffff;stroke-linejoin:miter;stroke-width:0.3; d=&amp;quot;M 614.769231 252
L 636.923077 252
L 636.923077 72
L 614.769231 72
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_2&amp;gt;&amp;lt;g id=matplotlib.axis_3&amp;gt;&amp;lt;g id=ytick_7&amp;gt;&amp;lt;g id=text_20&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(658.5 256.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-48 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_8&amp;gt;&amp;lt;g id=text_21&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(658.5 220.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-57 d=&amp;quot;M 5.46875 16.546875
L 13.921875 17.328125
Q 14.984375 11.375 18.015625 8.6875
Q 21.046875 6 25.78125 6
Q 29.828125 6 32.875 7.859375
Q 35.9375 9.71875 37.890625 12.8125
Q 39.84375 15.921875 41.15625 21.1875
Q 42.484375 26.46875 42.484375 31.9375
Q 42.484375 32.515625 42.4375 33.6875
Q 39.796875 29.5 35.234375 26.875
Q 30.671875 24.265625 25.34375 24.265625
Q 16.453125 24.265625 10.296875 30.703125
Q 4.15625 37.15625 4.15625 47.703125
Q 4.15625 58.59375 10.578125 65.234375
Q 17 71.875 26.65625 71.875
Q 33.640625 71.875 39.421875 68.109375
Q 45.21875 64.359375 48.21875 57.390625
Q 51.21875 50.4375 51.21875 37.25
Q 51.21875 23.53125 48.234375 15.40625
Q 45.265625 7.28125 39.375 3.03125
Q 33.5 -1.21875 25.59375 -1.21875
Q 17.1875 -1.21875 11.859375 3.4375
Q 6.546875 8.109375 5.46875 16.546875
z
M 41.453125 48.140625
Q 41.453125 55.71875 37.421875 60.15625
Q 33.40625 64.59375 27.734375 64.59375
Q 21.875 64.59375 17.53125 59.8125
Q 13.1875 55.03125 13.1875 47.40625
Q 13.1875 40.578125 17.3125 36.296875
Q 21.4375 32.03125 27.484375 32.03125
Q 33.59375 32.03125 37.515625 36.296875
Q 41.453125 40.578125 41.453125 48.140625
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_9&amp;gt;&amp;lt;g id=text_22&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(658.5 184.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_10&amp;gt;&amp;lt;g id=text_23&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(658.5 148.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-54 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_11&amp;gt;&amp;lt;g id=text_24&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(658.5 112.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-53 d=&amp;quot;M 4.15625 18.75
L 13.375 19.53125
Q 14.40625 12.796875 18.140625 9.390625
Q 21.875 6 27.15625 6
Q 33.5 6 37.890625 10.78125
Q 42.28125 15.578125 42.28125 23.484375
Q 42.28125 31 38.0625 35.34375
Q 33.84375 39.703125 27 39.703125
Q 22.75 39.703125 19.328125 37.765625
Q 15.921875 35.84375 13.96875 32.765625
L 5.71875 33.84375
L 12.640625 70.609375
L 48.25 70.609375
L 48.25 62.203125
L 19.671875 62.203125
L 15.828125 42.96875
Q 22.265625 47.46875 29.34375 47.46875
Q 38.71875 47.46875 45.15625 40.96875
Q 51.609375 34.46875 51.609375 24.265625
Q 51.609375 14.546875 45.953125 7.46875
Q 39.0625 -1.21875 27.15625 -1.21875
Q 17.390625 -1.21875 11.203125 4.25
Q 5.03125 9.71875 4.15625 18.75
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-56 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-57 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-53 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_12&amp;gt;&amp;lt;g id=text_25&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(658.5 76.652578)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_3&amp;gt;&amp;lt;g id=matplotlib.axis_4&amp;gt;&amp;lt;g id=xtick_14&amp;gt;&amp;lt;g id=text_26&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(100.733585 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_15&amp;gt;&amp;lt;g id=text_27&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(145.041278 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_16&amp;gt;&amp;lt;g id=text_28&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(189.34897 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_17&amp;gt;&amp;lt;g id=text_29&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(233.656662 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_18&amp;gt;&amp;lt;g id=text_30&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(277.964354 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_19&amp;gt;&amp;lt;g id=text_31&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(322.272047 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_20&amp;gt;&amp;lt;g id=text_32&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(366.579739 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_21&amp;gt;&amp;lt;g id=text_33&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(410.887431 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_22&amp;gt;&amp;lt;g id=text_34&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(455.195124 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_23&amp;gt;&amp;lt;g id=text_35&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(499.502816 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_24&amp;gt;&amp;lt;g id=text_36&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(543.810508 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_25&amp;gt;&amp;lt;g id=text_37&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(588.118201 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_26&amp;gt;&amp;lt;g id=text_38&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(632.425893 59.673013)rotate(-45)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=p2733c86433&amp;gt;&amp;lt;rect height=180 width=576 x=72 y=72 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div role=tabpanel class=&amp;quot;tab-pane col-sm-12&amp;quot; id=missing-matrix&amp;gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; standalone=&amp;quot;no&amp;quot;?&amp;gt;&amp;lt;!DOCTYPE svg class=&amp;quot;img-responsive center-img&amp;quot;PUBLIC &amp;quot;-//W3C//DTD SVG 1.1//EN&amp;quot;
&amp;quot;http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd&amp;quot;&amp;gt;&amp;lt;svg class=&amp;quot;img-responsive center-img&amp;quot; height=288pt version=1.1 viewbox=&amp;quot;0 0 720 288&amp;quot; width=720pt xmlns=http://www.w3.org/2000/svg xmlns:xlink=http://www.w3.org/1999/xlink&amp;gt;&amp;lt;metadata&amp;gt;&amp;lt;rdf:rdf xmlns:cc=http://creativecommons.org/ns# xmlns:dc=http://purl.org/dc/elements/1.1/ xmlns:rdf=http://www.w3.org/1999/02/22-rdf-syntax-ns#&amp;gt;&amp;lt;cc:work&amp;gt;&amp;lt;dc:type rdf:resource=http://purl.org/dc/dcmitype/StillImage /&amp;gt;&amp;lt;dc:date&amp;gt;2021-09-30T17:07:32.081477&amp;lt;/dc:date&amp;gt;&amp;lt;dc:format&amp;gt;image/svg+xml&amp;lt;/dc:format&amp;gt;&amp;lt;dc:creator&amp;gt;&amp;lt;cc:agent&amp;gt;&amp;lt;dc:title&amp;gt;Matplotlib v3.3.4, &lt;a href="https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style">https://matplotlib.org/&amp;amp;lt;/dc:title&amp;amp;gt;&amp;amp;lt;/cc:agent&amp;amp;gt;&amp;amp;lt;/dc:creator&amp;amp;gt;&amp;amp;lt;/cc:work&amp;amp;gt;&amp;amp;lt;/rdf:rdf&amp;amp;gt;&amp;amp;lt;/metadata&amp;amp;gt;&amp;amp;lt;defs&amp;amp;gt;&amp;amp;lt;style&lt;/a> type=text/css&amp;gt;*{stroke-linecap:butt;stroke-linejoin:round;}&amp;lt;/style&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;g id=figure_1&amp;gt;&amp;lt;g id=patch_1&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 0 288
L 720 288
L 720 0
L 0 0
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=axes_1&amp;gt;&amp;lt;g id=patch_2&amp;gt;&amp;lt;path style=fill:#ffffff; d=&amp;quot;M 72 230.4
L 648 230.4
L 648 86.4
L 72 86.4
z
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g clip-path=url(#pe6a86977c5)&amp;gt;&amp;lt;image height=112447 id=imaged27dd06a0a style=image-rendering:crisp-edges;image-rendering:pixelated transform=&amp;quot;matrix(44.307692 0 0 0.001281 72 86.4)&amp;quot; width=13 xlink:href=&amp;quot;data:image/png;base64,
iVBORw0KGgoAAAANSUhEUgAAAA0AAbc/CAYAAAASITNqAABDzklEQVR4nO3LQQEAIAgEMKQS7ShmPM1w/+2/M3tfhToNkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiRJkiSFPoHOcQ4rX6gWAAAAAElFTkSuQmCC&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_1&amp;gt;&amp;lt;g id=xtick_1&amp;gt;&amp;lt;g id=text_1&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(99.417637 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-116 d=&amp;quot;M 25.78125 7.859375
L 27.046875 0.09375
Q 23.34375 -0.6875 20.40625 -0.6875
Q 15.625 -0.6875 12.984375 0.828125
Q 10.359375 2.34375 9.28125 4.8125
Q 8.203125 7.28125 8.203125 15.1875
L 8.203125 45.015625
L 1.765625 45.015625
L 1.765625 51.859375
L 8.203125 51.859375
L 8.203125 64.703125
L 16.9375 69.96875
L 16.9375 51.859375
L 25.78125 51.859375
L 25.78125 45.015625
L 16.9375 45.015625
L 16.9375 14.703125
Q 16.9375 10.9375 17.40625 9.859375
Q 17.875 8.796875 18.921875 8.15625
Q 19.96875 7.515625 21.921875 7.515625
Q 23.390625 7.515625 25.78125 7.859375
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-105 d=&amp;quot;M 6.640625 61.46875
L 6.640625 71.578125
L 15.4375 71.578125
L 15.4375 61.46875
z
M 6.640625 0
L 6.640625 51.859375
L 15.4375 51.859375
L 15.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-109 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.453125 51.859375
L 14.453125 44.578125
Q 16.890625 48.390625 20.9375 50.703125
Q 25 53.03125 30.171875 53.03125
Q 35.9375 53.03125 39.625 50.640625
Q 43.3125 48.25 44.828125 43.953125
Q 50.984375 53.03125 60.84375 53.03125
Q 68.5625 53.03125 72.703125 48.75
Q 76.859375 44.484375 76.859375 35.59375
L 76.859375 0
L 68.109375 0
L 68.109375 32.671875
Q 68.109375 37.9375 67.25 40.25
Q 66.40625 42.578125 64.15625 43.984375
Q 61.921875 45.40625 58.890625 45.40625
Q 53.421875 45.40625 49.796875 41.765625
Q 46.1875 38.140625 46.1875 30.125
L 46.1875 0
L 37.40625 0
L 37.40625 33.6875
Q 37.40625 39.546875 35.25 42.46875
Q 33.109375 45.40625 28.21875 45.40625
Q 24.515625 45.40625 21.359375 43.453125
Q 18.21875 41.5 16.796875 37.734375
Q 15.375 33.984375 15.375 26.90625
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-101 d=&amp;quot;M 42.09375 16.703125
L 51.171875 15.578125
Q 49.03125 7.625 43.21875 3.21875
Q 37.40625 -1.171875 28.375 -1.171875
Q 17 -1.171875 10.328125 5.828125
Q 3.65625 12.84375 3.65625 25.484375
Q 3.65625 38.578125 10.390625 45.796875
Q 17.140625 53.03125 27.875 53.03125
Q 38.28125 53.03125 44.875 45.953125
Q 51.46875 38.875 51.46875 26.03125
Q 51.46875 25.25 51.421875 23.6875
L 12.75 23.6875
Q 13.234375 15.140625 17.578125 10.59375
Q 21.921875 6.0625 28.421875 6.0625
Q 33.25 6.0625 36.671875 8.59375
Q 40.09375 11.140625 42.09375 16.703125
z
M 13.234375 30.90625
L 42.1875 30.90625
Q 41.609375 37.453125 38.875 40.71875
Q 34.671875 45.796875 27.984375 45.796875
Q 21.921875 45.796875 17.796875 41.75
Q 13.671875 37.703125 13.234375 30.90625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-95 d=&amp;quot;M -1.515625 -19.875
L -1.515625 -13.53125
L 56.734375 -13.53125
L 56.734375 -19.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-104 d=&amp;quot;M 6.59375 0
L 6.59375 71.578125
L 15.375 71.578125
L 15.375 45.90625
Q 21.53125 53.03125 30.90625 53.03125
Q 36.671875 53.03125 40.921875 50.75
Q 45.171875 48.484375 47 44.484375
Q 48.828125 40.484375 48.828125 32.859375
L 48.828125 0
L 40.046875 0
L 40.046875 32.859375
Q 40.046875 39.453125 37.1875 42.453125
Q 34.328125 45.453125 29.109375 45.453125
Q 25.203125 45.453125 21.75 43.421875
Q 18.3125 41.40625 16.84375 37.9375
Q 15.375 34.46875 15.375 28.375
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-111 d=&amp;quot;M 3.328125 25.921875
Q 3.328125 40.328125 11.328125 47.265625
Q 18.015625 53.03125 27.640625 53.03125
Q 38.328125 53.03125 45.109375 46.015625
Q 51.90625 39.015625 51.90625 26.65625
Q 51.90625 16.65625 48.90625 10.90625
Q 45.90625 5.171875 40.15625 2
Q 34.421875 -1.171875 27.640625 -1.171875
Q 16.75 -1.171875 10.03125 5.8125
Q 3.328125 12.796875 3.328125 25.921875
z
M 12.359375 25.921875
Q 12.359375 15.96875 16.703125 11.015625
Q 21.046875 6.0625 27.640625 6.0625
Q 34.1875 6.0625 38.53125 11.03125
Q 42.875 16.015625 42.875 26.21875
Q 42.875 35.84375 38.5 40.796875
Q 34.125 45.75 27.640625 45.75
Q 21.046875 45.75 16.703125 40.8125
Q 12.359375 35.890625 12.359375 25.921875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-117 d=&amp;quot;M 40.578125 0
L 40.578125 7.625
Q 34.515625 -1.171875 24.125 -1.171875
Q 19.53125 -1.171875 15.546875 0.578125
Q 11.578125 2.34375 9.640625 5
Q 7.71875 7.671875 6.9375 11.53125
Q 6.390625 14.109375 6.390625 19.734375
L 6.390625 51.859375
L 15.1875 51.859375
L 15.1875 23.09375
Q 15.1875 16.21875 15.71875 13.8125
Q 16.546875 10.359375 19.234375 8.375
Q 21.921875 6.390625 25.875 6.390625
Q 29.828125 6.390625 33.296875 8.421875
Q 36.765625 10.453125 38.203125 13.9375
Q 39.65625 17.4375 39.65625 24.078125
L 39.65625 51.859375
L 48.4375 51.859375
L 48.4375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-114 d=&amp;quot;M 6.5 0
L 6.5 51.859375
L 14.40625 51.859375
L 14.40625 44
Q 17.4375 49.515625 20 51.265625
Q 22.5625 53.03125 25.640625 53.03125
Q 30.078125 53.03125 34.671875 50.203125
L 31.640625 42.046875
Q 28.421875 43.953125 25.203125 43.953125
Q 22.3125 43.953125 20.015625 42.21875
Q 17.71875 40.484375 16.75 37.40625
Q 15.28125 32.71875 15.28125 27.15625
L 15.28125 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=133.300781 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=188.916016 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=244.53125 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;use x=300.146484 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=355.761719 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=411.376953 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_2&amp;gt;&amp;lt;g id=text_2&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(143.72533 74.352232)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-100 d=&amp;quot;M 40.234375 0
L 40.234375 6.546875
Q 35.296875 -1.171875 25.734375 -1.171875
Q 19.53125 -1.171875 14.328125 2.25
Q 9.125 5.671875 6.265625 11.796875
Q 3.421875 17.921875 3.421875 25.875
Q 3.421875 33.640625 6 39.96875
Q 8.59375 46.296875 13.765625 49.65625
Q 18.953125 53.03125 25.34375 53.03125
Q 30.03125 53.03125 33.6875 51.046875
Q 37.359375 49.078125 39.65625 45.90625
L 39.65625 71.578125
L 48.390625 71.578125
L 48.390625 0
z
M 12.453125 25.875
Q 12.453125 15.921875 16.640625 10.984375
Q 20.84375 6.0625 26.5625 6.0625
Q 32.328125 6.0625 36.34375 10.765625
Q 40.375 15.484375 40.375 25.140625
Q 40.375 35.796875 36.265625 40.765625
Q 32.171875 45.75 26.171875 45.75
Q 20.3125 45.75 16.375 40.96875
Q 12.453125 36.1875 12.453125 25.875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-112 d=&amp;quot;M 6.59375 -19.875
L 6.59375 51.859375
L 14.59375 51.859375
L 14.59375 45.125
Q 17.4375 49.078125 21 51.046875
Q 24.5625 53.03125 29.640625 53.03125
Q 36.28125 53.03125 41.359375 49.609375
Q 46.4375 46.1875 49.015625 39.953125
Q 51.609375 33.734375 51.609375 26.3125
Q 51.609375 18.359375 48.75 11.984375
Q 45.90625 5.609375 40.453125 2.21875
Q 35.015625 -1.171875 29 -1.171875
Q 24.609375 -1.171875 21.109375 0.6875
Q 17.625 2.546875 15.375 5.375
L 15.375 -19.875
z
M 14.546875 25.640625
Q 14.546875 15.625 18.59375 10.84375
Q 22.65625 6.0625 28.421875 6.0625
Q 34.28125 6.0625 38.453125 11.015625
Q 42.625 15.96875 42.625 26.375
Q 42.625 36.28125 38.546875 41.203125
Q 34.46875 46.140625 28.8125 46.140625
Q 23.1875 46.140625 18.859375 40.890625
Q 14.546875 35.640625 14.546875 25.640625
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-108 d=&amp;quot;M 6.390625 0
L 6.390625 71.578125
L 15.1875 71.578125
L 15.1875 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-97 d=&amp;quot;M 40.4375 6.390625
Q 35.546875 2.25 31.03125 0.53125
Q 26.515625 -1.171875 21.34375 -1.171875
Q 12.796875 -1.171875 8.203125 3
Q 3.609375 7.171875 3.609375 13.671875
Q 3.609375 17.484375 5.34375 20.625
Q 7.078125 23.78125 9.890625 25.6875
Q 12.703125 27.59375 16.21875 28.5625
Q 18.796875 29.25 24.03125 29.890625
Q 34.671875 31.15625 39.703125 32.90625
Q 39.75 34.71875 39.75 35.203125
Q 39.75 40.578125 37.25 42.78125
Q 33.890625 45.75 27.25 45.75
Q 21.046875 45.75 18.09375 43.578125
Q 15.140625 41.40625 13.71875 35.890625
L 5.125 37.0625
Q 6.296875 42.578125 8.984375 45.96875
Q 11.671875 49.359375 16.75 51.1875
Q 21.828125 53.03125 28.515625 53.03125
Q 35.15625 53.03125 39.296875 51.46875
Q 43.453125 49.90625 45.40625 47.53125
Q 47.359375 45.171875 48.140625 41.546875
Q 48.578125 39.3125 48.578125 33.453125
L 48.578125 21.734375
Q 48.578125 9.46875 49.140625 6.21875
Q 49.703125 2.984375 51.375 0
L 42.1875 0
Q 40.828125 2.734375 40.4375 6.390625
z
M 39.703125 26.03125
Q 34.90625 24.078125 25.34375 22.703125
Q 19.921875 21.921875 17.671875 20.9375
Q 15.4375 19.96875 14.203125 18.09375
Q 12.984375 16.21875 12.984375 13.921875
Q 12.984375 10.40625 15.640625 8.0625
Q 18.3125 5.71875 23.4375 5.71875
Q 28.515625 5.71875 32.46875 7.9375
Q 36.421875 10.15625 38.28125 14.015625
Q 39.703125 17 39.703125 22.796875
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-121 d=&amp;quot;M 6.203125 -19.96875
L 5.21875 -11.71875
Q 8.109375 -12.5 10.25 -12.5
Q 13.1875 -12.5 14.9375 -11.515625
Q 16.703125 -10.546875 17.828125 -8.796875
Q 18.65625 -7.46875 20.515625 -2.25
Q 20.75 -1.515625 21.296875 -0.09375
L 1.609375 51.859375
L 11.078125 51.859375
L 21.875 21.828125
Q 23.96875 16.109375 25.640625 9.8125
Q 27.15625 15.875 29.25 21.625
L 40.328125 51.859375
L 49.125 51.859375
L 29.390625 -0.875
Q 26.21875 -9.421875 24.46875 -12.640625
Q 22.125 -17 19.09375 -19.015625
Q 16.0625 -21.046875 11.859375 -21.046875
Q 9.328125 -21.046875 6.203125 -19.96875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=166.845703 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=222.460938 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=278.076172 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=333.691406 xlink:href=#ArialMT-108 /&amp;gt;&amp;lt;use x=355.908203 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=411.523438 xlink:href=#ArialMT-121 /&amp;gt;&amp;lt;use x=461.523438 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=517.138672 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=544.921875 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=578.222656 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=633.837891 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_3&amp;gt;&amp;lt;g id=text_3&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(188.033022 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-119 d=&amp;quot;M 16.15625 0
L 0.296875 51.859375
L 9.375 51.859375
L 17.625 21.921875
L 20.703125 10.796875
Q 20.90625 11.625 23.390625 21.484375
L 31.640625 51.859375
L 40.671875 51.859375
L 48.4375 21.78125
L 51.03125 11.859375
L 54 21.875
L 62.890625 51.859375
L 71.4375 51.859375
L 55.21875 0
L 46.09375 0
L 37.84375 31.0625
L 35.84375 39.890625
L 25.34375 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-110 d=&amp;quot;M 6.59375 0
L 6.59375 51.859375
L 14.5 51.859375
L 14.5 44.484375
Q 20.21875 53.03125 31 53.03125
Q 35.6875 53.03125 39.625 51.34375
Q 43.5625 49.65625 45.515625 46.921875
Q 47.46875 44.1875 48.25 40.4375
Q 48.734375 37.984375 48.734375 31.890625
L 48.734375 0
L 39.9375 0
L 39.9375 31.546875
Q 39.9375 36.921875 38.90625 39.578125
Q 37.890625 42.234375 35.28125 43.8125
Q 32.671875 45.40625 29.15625 45.40625
Q 23.53125 45.40625 19.453125 41.84375
Q 15.375 38.28125 15.375 28.328125
L 15.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=339.111328 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_4&amp;gt;&amp;lt;g id=text_4&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(232.340714 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-115 d=&amp;quot;M 3.078125 15.484375
L 11.765625 16.84375
Q 12.5 11.625 15.84375 8.84375
Q 19.1875 6.0625 25.203125 6.0625
Q 31.25 6.0625 34.171875 8.515625
Q 37.109375 10.984375 37.109375 14.3125
Q 37.109375 17.28125 34.515625 19
Q 32.71875 20.171875 25.53125 21.96875
Q 15.875 24.421875 12.140625 26.203125
Q 8.40625 27.984375 6.46875 31.125
Q 4.546875 34.28125 4.546875 38.09375
Q 4.546875 41.546875 6.125 44.5
Q 7.71875 47.46875 10.453125 49.421875
Q 12.5 50.921875 16.03125 51.96875
Q 19.578125 53.03125 23.640625 53.03125
Q 29.734375 53.03125 34.34375 51.265625
Q 38.96875 49.515625 41.15625 46.5
Q 43.359375 43.5 44.1875 38.484375
L 35.59375 37.3125
Q 35.015625 41.3125 32.203125 43.546875
Q 29.390625 45.796875 24.265625 45.796875
Q 18.21875 45.796875 15.625 43.796875
Q 13.03125 41.796875 13.03125 39.109375
Q 13.03125 37.40625 14.109375 36.03125
Q 15.1875 34.625 17.484375 33.6875
Q 18.796875 33.203125 25.25 31.453125
Q 34.578125 28.953125 38.25 27.359375
Q 41.9375 25.78125 44.03125 22.75
Q 46.140625 19.734375 46.140625 15.234375
Q 46.140625 10.84375 43.578125 6.953125
Q 41.015625 3.078125 36.171875 0.953125
Q 31.34375 -1.171875 25.25 -1.171875
Q 15.140625 -1.171875 9.84375 3.03125
Q 4.546875 7.234375 3.078125 15.484375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=311.279297 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=366.894531 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=478.125 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_5&amp;gt;&amp;lt;g id=text_5&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(276.648407 74.352232)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-103 d=&amp;quot;M 4.984375 -4.296875
L 13.53125 -5.5625
Q 14.0625 -9.515625 16.5 -11.328125
Q 19.78125 -13.765625 25.4375 -13.765625
Q 31.546875 -13.765625 34.859375 -11.328125
Q 38.1875 -8.890625 39.359375 -4.5
Q 40.046875 -1.8125 39.984375 6.78125
Q 34.234375 0 25.640625 0
Q 14.9375 0 9.078125 7.71875
Q 3.21875 15.4375 3.21875 26.21875
Q 3.21875 33.640625 5.90625 39.90625
Q 8.59375 46.1875 13.6875 49.609375
Q 18.796875 53.03125 25.6875 53.03125
Q 34.859375 53.03125 40.828125 45.609375
L 40.828125 51.859375
L 48.921875 51.859375
L 48.921875 7.03125
Q 48.921875 -5.078125 46.453125 -10.125
Q 44 -15.1875 38.640625 -18.109375
Q 33.296875 -21.046875 25.484375 -21.046875
Q 16.21875 -21.046875 10.5 -16.875
Q 4.78125 -12.703125 4.984375 -4.296875
z
M 12.25 26.859375
Q 12.25 16.65625 16.296875 11.96875
Q 20.359375 7.28125 26.46875 7.28125
Q 32.515625 7.28125 36.609375 11.9375
Q 40.71875 16.609375 40.71875 26.5625
Q 40.71875 36.078125 36.5 40.90625
Q 32.28125 45.75 26.3125 45.75
Q 20.453125 45.75 16.34375 40.984375
Q 12.25 36.234375 12.25 26.859375
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=94.433594 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=150.048828 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=205.664062 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=261.279297 xlink:href=#ArialMT-103 /&amp;gt;&amp;lt;use x=316.894531 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=372.509766 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=422.509766 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_6&amp;gt;&amp;lt;g id=text_6&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(320.956099 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-118 d=&amp;quot;M 21 0
L 1.265625 51.859375
L 10.546875 51.859375
L 21.6875 20.796875
Q 23.484375 15.765625 25 10.359375
Q 26.171875 14.453125 28.265625 20.21875
L 39.796875 51.859375
L 48.828125 51.859375
L 29.203125 0
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-98 d=&amp;quot;M 14.703125 0
L 6.546875 0
L 6.546875 71.578125
L 15.328125 71.578125
L 15.328125 46.046875
Q 20.90625 53.03125 29.546875 53.03125
Q 34.328125 53.03125 38.59375 51.09375
Q 42.875 49.171875 45.625 45.671875
Q 48.390625 42.1875 49.953125 37.25
Q 51.515625 32.328125 51.515625 26.703125
Q 51.515625 13.375 44.921875 6.09375
Q 38.328125 -1.171875 29.109375 -1.171875
Q 19.921875 -1.171875 14.703125 6.5
z
M 14.59375 26.3125
Q 14.59375 17 17.140625 12.84375
Q 21.296875 6.0625 28.375 6.0625
Q 34.125 6.0625 38.328125 11.0625
Q 42.53125 16.0625 42.53125 25.984375
Q 42.53125 36.140625 38.5 40.96875
Q 34.46875 45.796875 28.765625 45.796875
Q 23 45.796875 18.796875 40.796875
Q 14.59375 35.796875 14.59375 26.3125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=72.216797 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=122.216797 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=144.433594 xlink:href=#ArialMT-98 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_7&amp;gt;&amp;lt;g id=text_7&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(365.263791 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-120 d=&amp;quot;M 0.734375 0
L 19.671875 26.953125
L 2.15625 51.859375
L 13.140625 51.859375
L 21.09375 39.703125
Q 23.34375 36.234375 24.703125 33.890625
Q 26.859375 37.109375 28.65625 39.59375
L 37.40625 51.859375
L 47.90625 51.859375
L 29.984375 27.4375
L 49.265625 0
L 38.484375 0
L 27.828125 16.109375
L 25 20.453125
L 11.375 0
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=416.845703 xlink:href=#ArialMT-120 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_8&amp;gt;&amp;lt;g id=text_8&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(409.571484 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=361.230469 xlink:href=#ArialMT-105 /&amp;gt;&amp;lt;use x=383.447266 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_9&amp;gt;&amp;lt;g id=text_9&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(453.879176 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-118 /&amp;gt;&amp;lt;use x=383.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_10&amp;gt;&amp;lt;g id=text_10&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(498.186868 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=27.783203 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=83.398438 xlink:href=#ArialMT-109 /&amp;gt;&amp;lt;use x=166.699219 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=222.314453 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=277.929688 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=333.544922 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=389.160156 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=444.775391 xlink:href=#ArialMT-97 /&amp;gt;&amp;lt;use x=500.390625 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=533.691406 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=561.474609 xlink:href=#ArialMT-117 /&amp;gt;&amp;lt;use x=617.089844 xlink:href=#ArialMT-114 /&amp;gt;&amp;lt;use x=650.390625 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_11&amp;gt;&amp;lt;g id=text_11&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(542.49456 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_12&amp;gt;&amp;lt;g id=text_12&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(586.802253 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=55.615234 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=111.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=183.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=239.0625 xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=xtick_13&amp;gt;&amp;lt;g id=text_13&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(631.109945 74.43841)rotate(-45)scale(0.104 -0.104)&amp;quot;&amp;gt;&amp;lt;use xlink:href=#ArialMT-115 /&amp;gt;&amp;lt;use x=50 xlink:href=#ArialMT-110 /&amp;gt;&amp;lt;use x=105.615234 xlink:href=#ArialMT-111 /&amp;gt;&amp;lt;use x=161.230469 xlink:href=#ArialMT-119 /&amp;gt;&amp;lt;use x=233.447266 xlink:href=#ArialMT-95 /&amp;gt;&amp;lt;use x=289.0625 xlink:href=#ArialMT-100 /&amp;gt;&amp;lt;use x=344.677734 xlink:href=#ArialMT-101 /&amp;gt;&amp;lt;use x=400.292969 xlink:href=#ArialMT-112 /&amp;gt;&amp;lt;use x=455.908203 xlink:href=#ArialMT-116 /&amp;gt;&amp;lt;use x=483.691406 xlink:href=#ArialMT-104 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=matplotlib.axis_2&amp;gt;&amp;lt;g id=ytick_1&amp;gt;&amp;lt;g id=text_14&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(54.270781 91.053218)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-49 d=&amp;quot;M 37.25 0
L 28.46875 0
L 28.46875 56
Q 25.296875 52.984375 20.140625 49.953125
Q 14.984375 46.921875 10.890625 45.40625
L 10.890625 53.90625
Q 18.265625 57.375 23.78125 62.296875
Q 29.296875 67.234375 31.59375 71.875
L 37.25 71.875
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=ytick_2&amp;gt;&amp;lt;g id=text_15&amp;gt;&amp;lt;g style=fill:#262626; transform=&amp;quot;translate(19.083437 235.051938)scale(0.13 -0.13)&amp;quot;&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;path id=ArialMT-50 d=&amp;quot;M 50.34375 8.453125
L 50.34375 0
L 3.03125 0
Q 2.9375 3.171875 4.046875 6.109375
Q 5.859375 10.9375 9.828125 15.625
Q 13.8125 20.3125 21.34375 26.46875
Q 33.015625 36.03125 37.109375 41.625
Q 41.21875 47.21875 41.21875 52.203125
Q 41.21875 57.421875 37.46875 61
Q 33.734375 64.59375 27.734375 64.59375
Q 21.390625 64.59375 17.578125 60.78125
Q 13.765625 56.984375 13.71875 50.25
L 4.6875 51.171875
Q 5.609375 61.28125 11.65625 66.578125
Q 17.71875 71.875 27.9375 71.875
Q 38.234375 71.875 44.234375 66.15625
Q 50.25 60.453125 50.25 52
Q 50.25 47.703125 48.484375 43.546875
Q 46.734375 39.40625 42.65625 34.8125
Q 38.578125 30.21875 29.109375 22.21875
Q 21.1875 15.578125 18.9375 13.203125
Q 16.703125 10.84375 15.234375 8.453125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-52 d=&amp;quot;M 32.328125 0
L 32.328125 17.140625
L 1.265625 17.140625
L 1.265625 25.203125
L 33.9375 71.578125
L 41.109375 71.578125
L 41.109375 25.203125
L 50.78125 25.203125
L 50.78125 17.140625
L 41.109375 17.140625
L 41.109375 0
z
M 32.328125 25.203125
L 32.328125 57.46875
L 9.90625 25.203125
z
&amp;quot;/&amp;gt;&amp;lt;path id=ArialMT-55 d=&amp;quot;M 4.734375 62.203125
L 4.734375 70.65625
L 51.078125 70.65625
L 51.078125 63.8125
Q 44.234375 56.546875 37.515625 44.484375
Q 30.8125 32.421875 27.15625 19.671875
Q 24.515625 10.6875 23.78125 0
L 14.75 0
Q 14.890625 8.453125 18.0625 20.40625
Q 21.234375 32.375 27.171875 43.484375
Q 33.109375 54.59375 39.796875 62.203125
z
&amp;quot;/&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;use xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=48.240234 xlink:href=#ArialMT-49 /&amp;gt;&amp;lt;use x=103.855469 xlink:href=#ArialMT-50 /&amp;gt;&amp;lt;use x=159.470703 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=215.085938 xlink:href=#ArialMT-52 /&amp;gt;&amp;lt;use x=270.701172 xlink:href=#ArialMT-55 /&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_1&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 116.307692 230.4
L 116.307692 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_2&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 160.615385 230.4
L 160.615385 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_3&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 204.923077 230.4
L 204.923077 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_4&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 249.230769 230.4
L 249.230769 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_5&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 293.538462 230.4
L 293.538462 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_6&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 337.846154 230.4
L 337.846154 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_7&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 382.153846 230.4
L 382.153846 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_8&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 426.461538 230.4
L 426.461538 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_9&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 470.769231 230.4
L 470.769231 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_10&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 515.076923 230.4
L 515.076923 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_11&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 559.384615 230.4
L 559.384615 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;g id=line2d_12&amp;gt;&amp;lt;path clip-path=url(#pe6a86977c5) style=fill:none;stroke:#ffffff;stroke-linecap:round;stroke-width:1.75; d=&amp;quot;M 603.692308 230.4
L 603.692308 86.4
&amp;quot;/&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;/g&amp;gt;&amp;lt;defs&amp;gt;&amp;lt;clippath id=pe6a86977c5&amp;gt;&amp;lt;rect height=144 width=576 x=72 y=86.4 /&amp;gt;&amp;lt;/clippath&amp;gt;&amp;lt;/defs&amp;gt;&amp;lt;/svg&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=sample&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Sample&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;h2 class=indent&amp;gt;First rows&amp;lt;/h2&amp;gt;&amp;lt;div id=sample-container class=col-sm-12&amp;gt;&amp;lt;table border=1 class=&amp;quot;dataframe sample table table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr style=&amp;quot;text-align: right;&amp;quot;&amp;gt;&amp;lt;th&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;time_hour&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;dep_delay_true&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_dir&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_speed&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_gust&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;visib&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_max&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_min&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_ave&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_departure&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;ppt&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;new_snow&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;snow_depth&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;0&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T05:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;220.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.5078&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;13.242946&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;1&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T05:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;220.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.5078&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;13.242946&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;2&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;3&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;4&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;7&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;8&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;9&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-01-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.9300&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;12.580000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;50.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;33.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;41.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;h2 class=indent&amp;gt;Last rows&amp;lt;/h2&amp;gt;&amp;lt;div id=sample-container class=col-sm-12&amp;gt;&amp;lt;table border=1 class=&amp;quot;dataframe sample table table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr style=&amp;quot;text-align: right;&amp;quot;&amp;gt;&amp;lt;th&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;time_hour&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;dep_delay_true&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_dir&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_speed&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_gust&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;visib&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_max&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_min&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_ave&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_departure&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;ppt&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;new_snow&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;snow_depth&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112437&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112438&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112439&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112440&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112441&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112442&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112443&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T21:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;280.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112444&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T22:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;True&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;260.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.90468&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.945768&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112445&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T22:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;260.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.90468&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.945768&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;112446&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-12-30T22:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;260.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.90468&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.945768&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;23.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;15.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;19.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-15.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;row header&amp;quot;&amp;gt;&amp;lt;a class=anchor-pos id=duplicate&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;h1 class=page-header&amp;gt;Duplicate rows&amp;lt;/h1&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=section-items&amp;gt;&amp;lt;div class=&amp;quot;row spacing&amp;quot;&amp;gt;&amp;lt;h2 class=indent&amp;gt;Most frequent&amp;lt;/h2&amp;gt;&amp;lt;div id=duplicate-container class=col-sm-12&amp;gt;&amp;lt;table border=1 class=&amp;quot;dataframe duplicate table table-striped&amp;quot;&amp;gt;&amp;lt;thead&amp;gt;&amp;lt;tr style=&amp;quot;text-align: right;&amp;quot;&amp;gt;&amp;lt;th&amp;gt;&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;time_hour&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;dep_delay_true&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_dir&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_speed&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;wind_gust&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;visib&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_max&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_min&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_ave&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;temp_departure&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;ppt&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;new_snow&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;snow_depth&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;count&amp;lt;/th&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/thead&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6143&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-07-28T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.000000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;85.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;71.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;78.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-0.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6884&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-08-22T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;220.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.50780&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;13.242946&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;91.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;73.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;82.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.70&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;36&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5490&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-07-07T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;70.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;6.90468&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;7.945768&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;83.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;66.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;74.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-3.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;2.15&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;35&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6500&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-08-09T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;320.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.45234&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.972884&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;84.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;64.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;74.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-3.3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;35&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;2367&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-03-24T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.000000&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;58.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;31.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;44.5&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-0.4&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.01&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5433&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-07-05T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;40.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.60312&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;5.297178&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;85.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;69.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;77.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-0.7&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;5672&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-07-13T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;230.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;8.05546&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;9.270062&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;93.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;73.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;83.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;4.6&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.03&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6080&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-07-26T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;30.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.35702&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;11.918651&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;76.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;66.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;71.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;-7.3&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6260&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-08-01T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;250.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.45234&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.972884&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;93.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;69.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;81.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.1&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.00&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;6289&amp;lt;/th&amp;gt;&amp;lt;td&amp;gt;2017-08-02T06:00:00Z&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;False&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;140.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.45234&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;3.972884&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;10.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;86.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;70.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;78.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.2&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.99&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;0.0&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;34&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;footer&amp;gt;&amp;lt;div class=container-fluid&amp;gt;&amp;lt;div class=&amp;quot;row center-block footer-text&amp;quot;&amp;gt;&amp;lt;p class=&amp;quot;text-muted text-center&amp;quot;&amp;gt;Report generated with &amp;lt;a href=https://github.com/pandas-profiling/pandas-profiling&amp;gt;pandas-profiling&amp;lt;/a&amp;gt;.&amp;lt;/p&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/footer&amp;gt;&amp;lt;script&amp;gt;
/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */
!function(a,b){&amp;quot;object&amp;quot;==typeof module&amp;amp;&amp;amp;&amp;quot;object&amp;quot;==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error(&amp;quot;jQuery requires a window with a document&amp;quot;);return b(a)}:b(a)}(&amp;quot;undefined&amp;quot;!=typeof window?window:this,function(a,b){var c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m=&amp;quot;1.12.4&amp;quot;,n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:&amp;quot;&amp;quot;,length:0,toArray:function(){return e.call(this)},get:function(a){return null!=a?0&amp;gt;a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a){return n.each(this,a)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0&amp;gt;a?b:0);return this.pushStack(c&amp;gt;=0&amp;amp;&amp;amp;b&amp;gt;c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for(&amp;quot;boolean&amp;quot;==typeof g&amp;amp;&amp;amp;(j=g,g=arguments[h]||{},h++),&amp;quot;object&amp;quot;==typeof g||n.isFunction(g)||(g={}),h===i&amp;amp;&amp;amp;(g=this,h&amp;ndash;);i&amp;gt;h;h++)if(null!=(e=arguments[h]))for(d in e)a=g[d],c=e[d],g!==c&amp;amp;&amp;amp;(j&amp;amp;&amp;amp;c&amp;amp;&amp;amp;(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&amp;amp;&amp;amp;n.isArray(a)?a:[]):f=a&amp;amp;&amp;amp;n.isPlainObject(a)?a:{},g[d]=n.extend(j,f,c)):void 0!==c&amp;amp;&amp;amp;(g[d]=c));return g},n.extend({expando:&amp;quot;jQuery&amp;quot;+(m+Math.random()).replace(/\D/g,&amp;quot;&amp;quot;),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return&amp;quot;function&amp;quot;===n.type(a)},isArray:Array.isArray||function(a){return&amp;quot;array&amp;quot;===n.type(a)},isWindow:function(a){return null!=a&amp;amp;&amp;amp;a==a.window},isNumeric:function(a){var b=a&amp;amp;&amp;amp;a.toString();return!n.isArray(a)&amp;amp;&amp;amp;b-parseFloat(b)+1&amp;gt;=0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},isPlainObject:function(a){var b;if(!a||&amp;quot;object&amp;quot;!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&amp;amp;&amp;amp;!k.call(a,&amp;quot;constructor&amp;quot;)&amp;amp;&amp;amp;!k.call(a.constructor.prototype,&amp;quot;isPrototypeOf&amp;quot;))return!1}catch(c){return!1}if(!l.ownFirst)for(b in a)return k.call(a,b);for(b in a);return void 0===b||k.call(a,b)},type:function(a){return null==a?a+&amp;quot;&amp;quot;:&amp;quot;object&amp;quot;==typeof a||&amp;quot;function&amp;quot;==typeof a?i[j.call(a)]||&amp;quot;object&amp;quot;:typeof a},globalEval:function(b){b&amp;amp;&amp;amp;n.trim(b)&amp;amp;&amp;amp;(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(p,&amp;quot;ms-&amp;quot;).replace(q,r)},nodeName:function(a,b){return a.nodeName&amp;amp;&amp;amp;a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b){var c,d=0;if(s(a)){for(c=a.length;c&amp;gt;d;d++)if(b.call(a[d],d,a[d])===!1)break}else for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){return null==a?&amp;quot;&amp;quot;:(a+&amp;quot;&amp;quot;).replace(o,&amp;quot;&amp;quot;)},makeArray:function(a,b){var c=b||[];return null!=a&amp;amp;&amp;amp;(s(Object(a))?n.merge(c,&amp;quot;string&amp;quot;==typeof a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return h.call(b,a,c);for(d=b.length,c=c?0&amp;gt;c?Math.max(0,d+c):c:0;d&amp;gt;c;c++)if(c in b&amp;amp;&amp;amp;b[c]===a)return c}return-1},merge:function(a,b){var c=+b.length,d=0,e=a.length;while(c&amp;gt;d)a[e++]=b[d++];if(c!==c)while(void 0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g&amp;gt;f;f++)d=!b(a[f],f),d!==h&amp;amp;&amp;amp;e.push(a[f]);return e},map:function(a,b,c){var d,e,g=0,h=[];if(s(a))for(d=a.length;d&amp;gt;g;g++)e=b(a[g],g,c),null!=e&amp;amp;&amp;amp;h.push(e);else for(g in a)e=b(a[g],g,c),null!=e&amp;amp;&amp;amp;h.push(e);return f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void 0},now:function(){return+new Date},support:l}),&amp;quot;function&amp;quot;==typeof Symbol&amp;amp;&amp;amp;(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each(&amp;quot;Boolean Number String Function Array Date RegExp Object Error Symbol&amp;quot;.split(&amp;quot; &amp;quot;),function(a,b){i[&amp;quot;[object &amp;quot;+b+&amp;quot;]&amp;quot;]=b.toLowerCase()});function s(a){var b=!!a&amp;amp;&amp;amp;&amp;quot;length&amp;quot;in a&amp;amp;&amp;amp;a.length,c=n.type(a);return&amp;quot;function&amp;quot;===c||n.isWindow(a)?!1:&amp;quot;array&amp;quot;===c||0===b||&amp;quot;number&amp;quot;==typeof b&amp;amp;&amp;amp;b&amp;gt;0&amp;amp;&amp;amp;b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u=&amp;quot;sizzle&amp;quot;+1*new Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return a===b&amp;amp;&amp;amp;(l=!0),0},C=1&amp;lt;&amp;lt;31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var c=0,d=a.length;d&amp;gt;c;c++)if(a[c]===b)return c;return-1},K=&amp;quot;checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped&amp;quot;,L=&amp;quot;[\x20\t\r\n\f]&amp;quot;,M=&amp;quot;(?:\\.|[\w-]|[^\x00-\xa0])+&amp;quot;,N=&amp;quot;\[&amp;quot;+L+&amp;quot;*(&amp;quot;+M+&amp;quot;)(?:&amp;quot;+L+&amp;quot;*([*^$|!~]?=)&amp;quot;+L+&amp;quot;*(?:'((?:\\.|[^\\'])*)'|&amp;amp;quot;((?:\\.|[^\\&amp;amp;quot;])*)&amp;amp;quot;|(&amp;quot;+M+&amp;quot;))|)&amp;quot;+L+&amp;quot;*\]&amp;quot;,O=&amp;quot;:(&amp;quot;+M+&amp;quot;)(?:\((('((?:\\.|[^\\'])*)'|&amp;amp;quot;((?:\\.|[^\\&amp;amp;quot;])*)&amp;amp;quot;)|((?:\\.|[^\\()[\]]|&amp;quot;+N+&amp;quot;)*)|.*)\)|)&amp;quot;,P=new RegExp(L+&amp;quot;+&amp;quot;,&amp;quot;g&amp;quot;),Q=new RegExp(&amp;quot;^&amp;quot;+L+&amp;quot;+|((?:^|[^\\])(?:\\.)*)&amp;quot;+L+&amp;quot;+$&amp;quot;,&amp;quot;g&amp;quot;),R=new RegExp(&amp;quot;^&amp;quot;+L+&amp;quot;*,&amp;quot;+L+&amp;quot;*&amp;quot;),S=new RegExp(&amp;quot;^&amp;quot;+L+&amp;quot;*([&amp;gt;+~]|&amp;quot;+L+&amp;quot;)&amp;quot;+L+&amp;quot;*&amp;quot;),T=new RegExp(&amp;quot;=&amp;quot;+L+&amp;quot;*([^\]'&amp;amp;quot;]*?)&amp;quot;+L+&amp;quot;*\]&amp;quot;,&amp;quot;g&amp;quot;),U=new RegExp(O),V=new RegExp(&amp;quot;^&amp;quot;+M+&amp;quot;$&amp;quot;),W={ID:new RegExp(&amp;quot;^#(&amp;quot;+M+&amp;quot;)&amp;quot;),CLASS:new RegExp(&amp;quot;^\.(&amp;quot;+M+&amp;quot;)&amp;quot;),TAG:new RegExp(&amp;quot;^(&amp;quot;+M+&amp;quot;|[*])&amp;quot;),ATTR:new RegExp(&amp;quot;^&amp;quot;+N),PSEUDO:new RegExp(&amp;quot;^&amp;quot;+O),CHILD:new RegExp(&amp;quot;^:(only|first|last|nth|nth-last)-(child|of-type)(?:\(&amp;quot;+L+&amp;quot;*(even|odd|(([+-]|)(\d*)n|)&amp;quot;+L+&amp;quot;*(?:([+-]|)&amp;quot;+L+&amp;quot;*(\d+)|))&amp;quot;+L+&amp;quot;*\)|)&amp;quot;,&amp;quot;i&amp;quot;),bool:new RegExp(&amp;quot;^(?:&amp;quot;+K+&amp;quot;)$&amp;quot;,&amp;quot;i&amp;quot;),needsContext:new RegExp(&amp;quot;^&amp;quot;+L+&amp;quot;*[&amp;gt;+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\(&amp;quot;+L+&amp;quot;*((?:-\d)?\d*)&amp;quot;+L+&amp;quot;*\)|)(?=[^-]|$)&amp;quot;,&amp;quot;i&amp;quot;)},X=/^(?:input|select|textarea|button)$/i,Y=/^h\d$/i,Z=/^[^{]+{\s*[native \w/,$=/^(?:#([\w-]+)|(\w+)|.([\w-]+))$/,_=/[+~]/,aa=/'|\/g,ba=new RegExp(&amp;quot;\\([\da-f]{1,6}&amp;quot;+L+&amp;quot;?|(&amp;quot;+L+&amp;quot;)|.)&amp;quot;,&amp;quot;ig&amp;quot;),ca=function(a,b,c){var d=&amp;quot;0x&amp;quot;+b-65536;return d!==d||c?b:0&amp;gt;d?String.fromCharCode(d+65536):String.fromCharCode(d&amp;gt;&amp;gt;10|55296,1023&amp;amp;d|56320)},da=function(){m()};try{H.apply(E=I.call(v.childNodes),v.childNodes),E[v.childNodes.length].nodeType}catch(ea){H={apply:E.length?function(a,b){G.apply(a,I.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fa(a,b,d,e){var f,h,j,k,l,o,r,s,w=b&amp;amp;&amp;amp;b.ownerDocument,x=b?b.nodeType:9;if(d=d||[],&amp;quot;string&amp;quot;!=typeof a||!a||1!==x&amp;amp;&amp;amp;9!==x&amp;amp;&amp;amp;11!==x)return d;if(!e&amp;amp;&amp;amp;((b?b.ownerDocument||b:v)!==n&amp;amp;&amp;amp;m(b),b=b||n,p)){if(11!==x&amp;amp;&amp;amp;(o=$.exec(a)))if(f=o[1]){if(9===x){if(!(j=b.getElementById(f)))return d;if(j.id===f)return d.push(j),d}else if(w&amp;amp;&amp;amp;(j=w.getElementById(f))&amp;amp;&amp;amp;t(b,j)&amp;amp;&amp;amp;j.id===f)return d.push(j),d}else{if(o[2])return H.apply(d,b.getElementsByTagName(a)),d;if((f=o[3])&amp;amp;&amp;amp;c.getElementsByClassName&amp;amp;&amp;amp;b.getElementsByClassName)return H.apply(d,b.getElementsByClassName(f)),d}if(c.qsa&amp;amp;&amp;amp;!A[a+&amp;quot; &amp;quot;]&amp;amp;&amp;amp;(!q||!q.test(a))){if(1!==x)w=b,s=a;else if(&amp;quot;object&amp;quot;!==b.nodeName.toLowerCase()){(k=b.getAttribute(&amp;quot;id&amp;quot;))?k=k.replace(aa,&amp;quot;\$&amp;amp;&amp;quot;):b.setAttribute(&amp;quot;id&amp;quot;,k=u),r=g(a),h=r.length,l=V.test(k)?&amp;quot;#&amp;quot;+k:&amp;quot;[id='&amp;quot;+k+&amp;quot;']&amp;quot;;while(h&amp;ndash;)r[h]=l+&amp;quot; &amp;quot;+qa(r[h]);s=r.join(&amp;quot;,&amp;quot;),w=_.test(a)&amp;amp;&amp;amp;oa(b.parentNode)||b}if(s)try{return H.apply(d,w.querySelectorAll(s)),d}catch(y){}finally{k===u&amp;amp;&amp;amp;b.removeAttribute(&amp;quot;id&amp;quot;)}}}return i(a.replace(Q,&amp;quot;$1&amp;quot;),b,d,e)}function ga(){var a=[];function b(c,e){return a.push(c+&amp;quot; &amp;quot;)&amp;gt;d.cacheLength&amp;amp;&amp;amp;delete b[a.shift()],b[c+&amp;quot; &amp;quot;]=e}return b}function ha(a){return a[u]=!0,a}function ia(a){var b=n.createElement(&amp;quot;div&amp;quot;);try{return!!a(b)}catch(c){return!1}finally{b.parentNode&amp;amp;&amp;amp;b.parentNode.removeChild(b),b=null}}function ja(a,b){var c=a.split(&amp;quot;|&amp;quot;),e=c.length;while(e&amp;ndash;)d.attrHandle[c[e]]=b}function ka(a,b){var c=b&amp;amp;&amp;amp;a,d=c&amp;amp;&amp;amp;1===a.nodeType&amp;amp;&amp;amp;1===b.nodeType&amp;amp;&amp;amp;(~b.sourceIndex||C)-(~a.sourceIndex||C);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function la(a){return function(b){var c=b.nodeName.toLowerCase();return&amp;quot;input&amp;quot;===c&amp;amp;&amp;amp;b.type===a}}function ma(a){return function(b){var c=b.nodeName.toLowerCase();return(&amp;quot;input&amp;quot;===c||&amp;quot;button&amp;quot;===c)&amp;amp;&amp;amp;b.type===a}}function na(a){return ha(function(b){return b=+b,ha(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g&amp;ndash;)c[e=f[g]]&amp;amp;&amp;amp;(c[e]=!(d[e]=c[e]))})})}function oa(a){return a&amp;amp;&amp;amp;&amp;quot;undefined&amp;quot;!=typeof a.getElementsByTagName&amp;amp;&amp;amp;a}c=fa.support={},f=fa.isXML=function(a){var b=a&amp;amp;&amp;amp;(a.ownerDocument||a).documentElement;return b?&amp;quot;HTML&amp;quot;!==b.nodeName:!1},m=fa.setDocument=function(a){var b,e,g=a?a.ownerDocument||a:v;return g!==n&amp;amp;&amp;amp;9===g.nodeType&amp;amp;&amp;amp;g.documentElement?(n=g,o=n.documentElement,p=!f(n),(e=n.defaultView)&amp;amp;&amp;amp;e.top!==e&amp;amp;&amp;amp;(e.addEventListener?e.addEventListener(&amp;quot;unload&amp;quot;,da,!1):e.attachEvent&amp;amp;&amp;amp;e.attachEvent(&amp;quot;onunload&amp;quot;,da)),c.attributes=ia(function(a){return a.className=&amp;quot;i&amp;quot;,!a.getAttribute(&amp;quot;className&amp;quot;)}),c.getElementsByTagName=ia(function(a){return a.appendChild(n.createComment(&amp;quot;&amp;quot;)),!a.getElementsByTagName(&amp;quot;*&amp;quot;).length}),c.getElementsByClassName=Z.test(n.getElementsByClassName),c.getById=ia(function(a){return o.appendChild(a).id=u,!n.getElementsByName||!n.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(&amp;quot;undefined&amp;quot;!=typeof b.getElementById&amp;amp;&amp;amp;p){var c=b.getElementById(a);return c?[c]:[]}},d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){return a.getAttribute(&amp;quot;id&amp;quot;)===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(ba,ca);return function(a){var c=&amp;quot;undefined&amp;quot;!=typeof a.getAttributeNode&amp;amp;&amp;amp;a.getAttributeNode(&amp;quot;id&amp;quot;);return c&amp;amp;&amp;amp;c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return&amp;quot;undefined&amp;quot;!=typeof b.getElementsByTagName?b.getElementsByTagName(a):c.qsa?b.querySelectorAll(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if(&amp;quot;*&amp;quot;===a){while(c=f[e++])1===c.nodeType&amp;amp;&amp;amp;d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&amp;amp;&amp;amp;function(a,b){return&amp;quot;undefined&amp;quot;!=typeof b.getElementsByClassName&amp;amp;&amp;amp;p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=Z.test(n.querySelectorAll))&amp;amp;&amp;amp;(ia(function(a){o.appendChild(a).innerHTML=&amp;quot;&amp;lt;a id='&amp;quot;+u+&amp;quot;'&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;select id='&amp;quot;+u+&amp;quot;-\r\' msallowcapture=''&amp;gt;&amp;lt;option selected=''&amp;gt;&amp;lt;/option&amp;gt;&amp;lt;/select&amp;gt;&amp;quot;,a.querySelectorAll(&amp;quot;[msallowcapture^='']&amp;quot;).length&amp;amp;&amp;amp;q.push(&amp;quot;[*^$]=&amp;quot;+L+&amp;quot;*(?:''|&amp;amp;quot;&amp;amp;quot;)&amp;quot;),a.querySelectorAll(&amp;quot;[selected]&amp;quot;).length||q.push(&amp;quot;\[&amp;quot;+L+&amp;quot;*(?:value|&amp;quot;+K+&amp;quot;)&amp;quot;),a.querySelectorAll(&amp;quot;[id~=&amp;quot;+u+&amp;quot;-]&amp;quot;).length||q.push(&amp;quot;~=&amp;quot;),a.querySelectorAll(&amp;quot;:checked&amp;quot;).length||q.push(&amp;quot;:checked&amp;quot;),a.querySelectorAll(&amp;quot;a#&amp;quot;+u+&amp;quot;+*&amp;quot;).length||q.push(&amp;quot;.#.+[+~]&amp;quot;)}),ia(function(a){var b=n.createElement(&amp;quot;input&amp;quot;);b.setAttribute(&amp;quot;type&amp;quot;,&amp;quot;hidden&amp;quot;),a.appendChild(b).setAttribute(&amp;quot;name&amp;quot;,&amp;quot;D&amp;quot;),a.querySelectorAll(&amp;quot;[name=d]&amp;quot;).length&amp;amp;&amp;amp;q.push(&amp;quot;name&amp;quot;+L+&amp;quot;*[*^$|!~]?=&amp;quot;),a.querySelectorAll(&amp;quot;:enabled&amp;quot;).length||q.push(&amp;quot;:enabled&amp;quot;,&amp;quot;:disabled&amp;quot;),a.querySelectorAll(&amp;quot;*,:x&amp;quot;),q.push(&amp;quot;,.*:&amp;quot;)})),(c.matchesSelector=Z.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&amp;amp;&amp;amp;ia(function(a){c.disconnectedMatch=s.call(a,&amp;quot;div&amp;quot;),s.call(a,&amp;quot;[s!='']:x&amp;quot;),r.push(&amp;quot;!=&amp;quot;,O)}),q=q.length&amp;amp;&amp;amp;new RegExp(q.join(&amp;quot;|&amp;quot;)),r=r.length&amp;amp;&amp;amp;new RegExp(r.join(&amp;quot;|&amp;quot;)),b=Z.test(o.compareDocumentPosition),t=b||Z.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&amp;amp;&amp;amp;b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&amp;amp;&amp;amp;16&amp;amp;a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&amp;amp;d||!c.sortDetached&amp;amp;&amp;amp;b.compareDocumentPosition(a)===d?a===n||a.ownerDocument===v&amp;amp;&amp;amp;t(v,a)?-1:b===n||b.ownerDocument===v&amp;amp;&amp;amp;t(v,b)?1:k?J(k,a)-J(k,b):0:4&amp;amp;d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,e=a.parentNode,f=b.parentNode,g=[a],h=[b];if(!e||!f)return a===n?-1:b===n?1:e?-1:f?1:k?J(k,a)-J(k,b):0;if(e===f)return ka(a,b);c=a;while(c=c.parentNode)g.unshift(c);c=b;while(c=c.parentNode)h.unshift(c);while(g[d]===h[d])d++;return d?ka(g[d],h[d]):g[d]===v?-1:h[d]===v?1:0},n):n},fa.matches=function(a,b){return fa(a,null,null,b)},fa.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&amp;amp;&amp;amp;m(a),b=b.replace(T,&amp;quot;='$1']&amp;quot;),c.matchesSelector&amp;amp;&amp;amp;p&amp;amp;&amp;amp;!A[b+&amp;quot; &amp;quot;]&amp;amp;&amp;amp;(!r||!r.test(b))&amp;amp;&amp;amp;(!q||!q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&amp;amp;&amp;amp;11!==a.document.nodeType)return d}catch(e){}return fa(b,n,null,[a]).length&amp;gt;0},fa.contains=function(a,b){return(a.ownerDocument||a)!==n&amp;amp;&amp;amp;m(a),t(a,b)},fa.attr=function(a,b){(a.ownerDocument||a)!==n&amp;amp;&amp;amp;m(a);var e=d.attrHandle[b.toLowerCase()],f=e&amp;amp;&amp;amp;D.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&amp;amp;&amp;amp;f.specified?f.value:null},fa.error=function(a){throw new Error(&amp;quot;Syntax error, unrecognized expression: &amp;quot;+a)},fa.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&amp;amp;&amp;amp;a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&amp;amp;&amp;amp;(e=d.push(f));while(e&amp;ndash;)a.splice(d[e],1)}return k=null,a},e=fa.getText=function(a){var b,c=&amp;quot;&amp;quot;,d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if(&amp;quot;string&amp;quot;==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fa.selectors={cacheLength:50,createPseudo:ha,match:W,attrHandle:{},find:{},relative:{&amp;quot;&amp;gt;&amp;quot;:{dir:&amp;quot;parentNode&amp;quot;,first:!0},&amp;quot; &amp;quot;:{dir:&amp;quot;parentNode&amp;quot;},&amp;quot;+&amp;quot;:{dir:&amp;quot;previousSibling&amp;quot;,first:!0},&amp;quot;~&amp;quot;:{dir:&amp;quot;previousSibling&amp;quot;}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(ba,ca),a[3]=(a[3]||a[4]||a[5]||&amp;quot;&amp;quot;).replace(ba,ca),&amp;quot;~=&amp;quot;===a[2]&amp;amp;&amp;amp;(a[3]=&amp;quot; &amp;quot;+a[3]+&amp;quot; &amp;quot;),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),&amp;quot;nth&amp;quot;===a[1].slice(0,3)?(a[3]||fa.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*(&amp;quot;even&amp;quot;===a[3]||&amp;quot;odd&amp;quot;===a[3])),a[5]=+(a[7]+a[8]||&amp;quot;odd&amp;quot;===a[3])):a[3]&amp;amp;&amp;amp;fa.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&amp;amp;&amp;amp;a[2];return W.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||&amp;quot;&amp;quot;:c&amp;amp;&amp;amp;U.test(c)&amp;amp;&amp;amp;(b=g(c,!0))&amp;amp;&amp;amp;(b=c.indexOf(&amp;quot;)&amp;quot;,c.length-b)-c.length)&amp;amp;&amp;amp;(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(ba,ca).toLowerCase();return&amp;quot;*&amp;quot;===a?function(){return!0}:function(a){return a.nodeName&amp;amp;&amp;amp;a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+&amp;quot; &amp;quot;];return b||(b=new RegExp(&amp;quot;(^|&amp;quot;+L+&amp;quot;)&amp;quot;+a+&amp;quot;(&amp;quot;+L+&amp;quot;|$)&amp;quot;))&amp;amp;&amp;amp;y(a,function(a){return b.test(&amp;quot;string&amp;quot;==typeof a.className&amp;amp;&amp;amp;a.className||&amp;quot;undefined&amp;quot;!=typeof a.getAttribute&amp;amp;&amp;amp;a.getAttribute(&amp;quot;class&amp;quot;)||&amp;quot;&amp;quot;)})},ATTR:function(a,b,c){return function(d){var e=fa.attr(d,a);return null==e?&amp;quot;!=&amp;quot;===b:b?(e+=&amp;quot;&amp;quot;,&amp;quot;=&amp;quot;===b?e===c:&amp;quot;!=&amp;quot;===b?e!==c:&amp;quot;^=&amp;quot;===b?c&amp;amp;&amp;amp;0===e.indexOf(c):&amp;quot;*=&amp;quot;===b?c&amp;amp;&amp;amp;e.indexOf(c)&amp;gt;-1:&amp;quot;$=&amp;quot;===b?c&amp;amp;&amp;amp;e.slice(-c.length)===c:&amp;quot;~=&amp;quot;===b?(&amp;quot; &amp;quot;+e.replace(P,&amp;quot; &amp;quot;)+&amp;quot; &amp;quot;).indexOf(c)&amp;gt;-1:&amp;quot;|=&amp;quot;===b?e===c||e.slice(0,c.length+1)===c+&amp;quot;-&amp;quot;:!1):!0}},CHILD:function(a,b,c,d,e){var f=&amp;quot;nth&amp;quot;!==a.slice(0,3),g=&amp;quot;last&amp;quot;!==a.slice(-4),h=&amp;quot;of-type&amp;quot;===b;return 1===d&amp;amp;&amp;amp;0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?&amp;quot;nextSibling&amp;quot;:&amp;quot;previousSibling&amp;quot;,q=b.parentNode,r=h&amp;amp;&amp;amp;b.nodeName.toLowerCase(),s=!i&amp;amp;&amp;amp;!h,t=!1;if(q){if(f){while(p){m=b;while(m=m[p])if(h?m.nodeName.toLowerCase()===r:1===m.nodeType)return!1;o=p=&amp;quot;only&amp;quot;===a&amp;amp;&amp;amp;!o&amp;amp;&amp;amp;&amp;quot;nextSibling&amp;quot;}return!0}if(o=[g?q.firstChild:q.lastChild],g&amp;amp;&amp;amp;s){m=q,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&amp;amp;&amp;amp;j[1],t=n&amp;amp;&amp;amp;j[2],m=n&amp;amp;&amp;amp;q.childNodes[n];while(m=++n&amp;amp;&amp;amp;m&amp;amp;&amp;amp;m[p]||(t=n=0)||o.pop())if(1===m.nodeType&amp;amp;&amp;amp;++t&amp;amp;&amp;amp;m===b){k[a]=[w,n,t];break}}else if(s&amp;amp;&amp;amp;(m=b,l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),j=k[a]||[],n=j[0]===w&amp;amp;&amp;amp;j[1],t=n),t===!1)while(m=++n&amp;amp;&amp;amp;m&amp;amp;&amp;amp;m[p]||(t=n=0)||o.pop())if((h?m.nodeName.toLowerCase()===r:1===m.nodeType)&amp;amp;&amp;amp;++t&amp;amp;&amp;amp;(s&amp;amp;&amp;amp;(l=m[u]||(m[u]={}),k=l[m.uniqueID]||(l[m.uniqueID]={}),k[a]=[w,t]),m===b))break;return t-=e,t===d||t%d===0&amp;amp;&amp;amp;t/d&amp;gt;=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fa.error(&amp;quot;unsupported pseudo: &amp;quot;+a);return e[u]?e(b):e.length&amp;gt;1?(c=[a,a,&amp;quot;&amp;quot;,b],d.setFilters.hasOwnProperty(a.toLowerCase())?ha(function(a,c){var d,f=e(a,b),g=f.length;while(g&amp;ndash;)d=J(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:ha(function(a){var b=[],c=[],d=h(a.replace(Q,&amp;quot;$1&amp;quot;));return d[u]?ha(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h&amp;ndash;)(f=g[h])&amp;amp;&amp;amp;(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),b[0]=null,!c.pop()}}),has:ha(function(a){return function(b){return fa(a,b).length&amp;gt;0}}),contains:ha(function(a){return a=a.replace(ba,ca),function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)&amp;gt;-1}}),lang:ha(function(a){return V.test(a||&amp;quot;&amp;quot;)||fa.error(&amp;quot;unsupported lang: &amp;quot;+a),a=a.replace(ba,ca).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute(&amp;quot;xml:lang&amp;quot;)||b.getAttribute(&amp;quot;lang&amp;quot;))return c=c.toLowerCase(),c===a||0===c.indexOf(a+&amp;quot;-&amp;quot;);while((b=b.parentNode)&amp;amp;&amp;amp;1===b.nodeType);return!1}}),target:function(b){var c=a.location&amp;amp;&amp;amp;a.location.hash;return c&amp;amp;&amp;amp;c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&amp;amp;&amp;amp;(!n.hasFocus||n.hasFocus())&amp;amp;&amp;amp;!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return&amp;quot;input&amp;quot;===b&amp;amp;&amp;amp;!!a.checked||&amp;quot;option&amp;quot;===b&amp;amp;&amp;amp;!!a.selected},selected:function(a){return a.parentNode&amp;amp;&amp;amp;a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType&amp;lt;6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Y.test(a.nodeName)},input:function(a){return X.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return&amp;quot;input&amp;quot;===b&amp;amp;&amp;amp;&amp;quot;button&amp;quot;===a.type||&amp;quot;button&amp;quot;===b},text:function(a){var b;return&amp;quot;input&amp;quot;===a.nodeName.toLowerCase()&amp;amp;&amp;amp;&amp;quot;text&amp;quot;===a.type&amp;amp;&amp;amp;(null==(b=a.getAttribute(&amp;quot;type&amp;quot;))||&amp;quot;text&amp;quot;===b.toLowerCase())},first:na(function(){return[0]}),last:na(function(a,b){return[b-1]}),eq:na(function(a,b,c){return[0&amp;gt;c?c+b:c]}),even:na(function(a,b){for(var c=0;b&amp;gt;c;c+=2)a.push(c);return a}),odd:na(function(a,b){for(var c=1;b&amp;gt;c;c+=2)a.push(c);return a}),lt:na(function(a,b,c){for(var d=0&amp;gt;c?c+b:c;&amp;ndash;d&amp;gt;=0;)a.push(d);return a}),gt:na(function(a,b,c){for(var d=0&amp;gt;c?c+b:c;++d&amp;lt;b;)a.push(d);return a})}},d.pseudos.nth=d.pseudos.eq;for(b in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})d.pseudos[b]=la(b);for(b in{submit:!0,reset:!0})d.pseudos[b]=ma(b);function pa(){}pa.prototype=d.filters=d.pseudos,d.setFilters=new pa,g=fa.tokenize=function(a,b){var c,e,f,g,h,i,j,k=z[a+&amp;quot; &amp;quot;];if(k)return b?0:k.slice(0);h=a,i=[],j=d.preFilter;while(h){c&amp;amp;&amp;amp;!(e=R.exec(h))||(e&amp;amp;&amp;amp;(h=h.slice(e[0].length)||h),i.push(f=[])),c=!1,(e=S.exec(h))&amp;amp;&amp;amp;(c=e.shift(),f.push({value:c,type:e[0].replace(Q,&amp;quot; &amp;quot;)}),h=h.slice(c.length));for(g in d.filter)!(e=W[g].exec(h))||j[g]&amp;amp;&amp;amp;!(e=j&lt;a href="e">g&lt;/a>)||(c=e.shift(),f.push({value:c,type:g,matches:e}),h=h.slice(c.length));if(!c)break}return b?h.length:h?fa.error(a):z(a,i).slice(0)};function qa(a){for(var b=0,c=a.length,d=&amp;quot;&amp;quot;;c&amp;gt;b;b++)d+=a[b].value;return d}function ra(a,b,c){var d=b.dir,e=c&amp;amp;&amp;amp;&amp;quot;parentNode&amp;quot;===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j,k=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&amp;amp;&amp;amp;a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(j=b[u]||(b[u]={}),i=j[b.uniqueID]||(j[b.uniqueID]={}),(h=i[d])&amp;amp;&amp;amp;h[0]===w&amp;amp;&amp;amp;h[1]===f)return k[2]=h[2];if(i[d]=k,k[2]=a(b,c,g))return!0}}}function sa(a){return a.length&amp;gt;1?function(b,c,d){var e=a.length;while(e&amp;ndash;)if(!a&lt;a href="b,c,d">e&lt;/a>)return!1;return!0}:a[0]}function ta(a,b,c){for(var d=0,e=b.length;e&amp;gt;d;d++)fa(a,b[d],c);return c}function ua(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i&amp;gt;h;h++)(f=a[h])&amp;amp;&amp;amp;(c&amp;amp;&amp;amp;!c(f,d,e)||(g.push(f),j&amp;amp;&amp;amp;b.push(h)));return g}function va(a,b,c,d,e,f){return d&amp;amp;&amp;amp;!d[u]&amp;amp;&amp;amp;(d=va(d)),e&amp;amp;&amp;amp;!e[u]&amp;amp;&amp;amp;(e=va(e,f)),ha(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||ta(b||&amp;quot;*&amp;quot;,h.nodeType?[h]:h,[]),q=!a||!f&amp;amp;&amp;amp;b?p:ua(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&amp;amp;&amp;amp;c(q,r,h,i),d){j=ua(r,n),d(j,[],h,i),k=j.length;while(k&amp;ndash;)(l=j[k])&amp;amp;&amp;amp;(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k&amp;ndash;)(l=r[k])&amp;amp;&amp;amp;j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k&amp;ndash;)(l=r[k])&amp;amp;&amp;amp;(j=e?J(f,l):m[k])&amp;gt;-1&amp;amp;&amp;amp;(f[j]=!(g[j]=l))}}else r=ua(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):H.apply(g,r)})}function wa(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[&amp;quot; &amp;quot;],i=g?1:0,k=ra(function(a){return a===b},h,!0),l=ra(function(a){return J(b,a)&amp;gt;-1},h,!0),m=[function(a,c,d){var e=!g&amp;amp;&amp;amp;(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d));return b=null,e}];f&amp;gt;i;i++)if(c=d.relative[a[i].type])m=[ra(sa(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f&amp;gt;e;e++)if(d.relative[a[e].type])break;return va(i&amp;gt;1&amp;amp;&amp;amp;sa(m),i&amp;gt;1&amp;amp;&amp;amp;qa(a.slice(0,i-1).concat({value:&amp;quot; &amp;quot;===a[i-2].type?&amp;quot;*&amp;quot;:&amp;quot;&amp;quot;})).replace(Q,&amp;quot;$1&amp;quot;),c,e&amp;gt;i&amp;amp;&amp;amp;wa(a.slice(i,e)),f&amp;gt;e&amp;amp;&amp;amp;wa(a=a.slice(e)),f&amp;gt;e&amp;amp;&amp;amp;qa(a))}m.push(c)}return sa(m)}function xa(a,b){var c=b.length&amp;gt;0,e=a.length&amp;gt;0,f=function(f,g,h,i,k){var l,o,q,r=0,s=&amp;quot;0&amp;quot;,t=f&amp;amp;&amp;amp;[],u=[],v=j,x=f||e&amp;amp;&amp;amp;d.find.TAG(&amp;quot;*&amp;quot;,k),y=w+=null==v?1:Math.random()||.1,z=x.length;for(k&amp;amp;&amp;amp;(j=g===n||g||k);s!==z&amp;amp;&amp;amp;null!=(l=x[s]);s++){if(e&amp;amp;&amp;amp;l){o=0,g||l.ownerDocument===n||(m(l),h=!p);while(q=a[o++])if(q(l,g||n,h)){i.push(l);break}k&amp;amp;&amp;amp;(w=y)}c&amp;amp;&amp;amp;((l=!q&amp;amp;&amp;amp;l)&amp;amp;&amp;amp;r&amp;ndash;,f&amp;amp;&amp;amp;t.push(l))}if(r+=s,c&amp;amp;&amp;amp;s!==r){o=0;while(q=b[o++])q(t,u,g,h);if(f){if(r&amp;gt;0)while(s&amp;ndash;)t[s]||u[s]||(u[s]=F.call(i));u=ua(u)}H.apply(i,u),k&amp;amp;&amp;amp;!f&amp;amp;&amp;amp;u.length&amp;gt;0&amp;amp;&amp;amp;r+b.length&amp;gt;1&amp;amp;&amp;amp;fa.uniqueSort(i)}return k&amp;amp;&amp;amp;(w=y,j=v),t};return c?ha(f):f}return h=fa.compile=function(a,b){var c,d=[],e=[],f=A[a+&amp;quot; &amp;quot;];if(!f){b||(b=g(a)),c=b.length;while(c&amp;ndash;)f=wa(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xa(e,d)),f.selector=a}return f},i=fa.select=function(a,b,e,f){var i,j,k,l,m,n=&amp;quot;function&amp;quot;==typeof a&amp;amp;&amp;amp;a,o=!f&amp;amp;&amp;amp;g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length&amp;gt;2&amp;amp;&amp;amp;&amp;quot;ID&amp;quot;===(k=j[0]).type&amp;amp;&amp;amp;c.getById&amp;amp;&amp;amp;9===b.nodeType&amp;amp;&amp;amp;p&amp;amp;&amp;amp;d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(ba,ca),b)||[])[0],!b)return e;n&amp;amp;&amp;amp;(b=b.parentNode),a=a.slice(j.shift().value.length)}i=W.needsContext.test(a)?0:j.length;while(i&amp;ndash;){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&amp;amp;&amp;amp;(f=m(k.matches[0].replace(ba,ca),_.test(j[0].type)&amp;amp;&amp;amp;oa(b.parentNode)||b))){if(j.splice(i,1),a=f.length&amp;amp;&amp;amp;qa(j),!a)return H.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,!b||_.test(a)&amp;amp;&amp;amp;oa(b.parentNode)||b),e},c.sortStable=u.split(&amp;quot;&amp;quot;).sort(B).join(&amp;quot;&amp;quot;)===u,c.detectDuplicates=!!l,m(),c.sortDetached=ia(function(a){return 1&amp;amp;a.compareDocumentPosition(n.createElement(&amp;quot;div&amp;quot;))}),ia(function(a){return a.innerHTML=&amp;quot;&amp;lt;a href='#'&amp;gt;&amp;lt;/a&amp;gt;&amp;quot;,&amp;quot;#&amp;quot;===a.firstChild.getAttribute(&amp;quot;href&amp;quot;)})||ja(&amp;quot;type|href|height|width&amp;quot;,function(a,b,c){return c?void 0:a.getAttribute(b,&amp;quot;type&amp;quot;===b.toLowerCase()?1:2)}),c.attributes&amp;amp;&amp;amp;ia(function(a){return a.innerHTML=&amp;quot;&amp;lt;input/&amp;gt;&amp;quot;,a.firstChild.setAttribute(&amp;quot;value&amp;quot;,&amp;quot;&amp;quot;),&amp;quot;&amp;quot;===a.firstChild.getAttribute(&amp;quot;value&amp;quot;)})||ja(&amp;quot;value&amp;quot;,function(a,b,c){return c||&amp;quot;input&amp;quot;!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ia(function(a){return null==a.getAttribute(&amp;quot;disabled&amp;quot;)})||ja(K,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&amp;amp;&amp;amp;d.specified?d.value:null}),fa}(a);n.find=t,n.expr=t.selectors,n.expr[&amp;quot;:&amp;quot;]=n.expr.pseudos,n.uniqueSort=n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&amp;amp;&amp;amp;9!==a.nodeType)if(1===a.nodeType){if(e&amp;amp;&amp;amp;n(a).is(c))break;d.push(a)}return d},v=function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&amp;amp;&amp;amp;a!==b&amp;amp;&amp;amp;c.push(a);return c},w=n.expr.match.needsContext,x=/^&amp;lt;([\w-]+)\s*/?&amp;gt;(?:&amp;lt;/\1&amp;gt;|)$/,y=/^.[^:#[.,]*$/;function z(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if(&amp;quot;string&amp;quot;==typeof b){if(y.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return n.inArray(a,b)&amp;gt;-1!==c})}n.filter=function(a,b,c){var d=b[0];return c&amp;amp;&amp;amp;(a=&amp;quot;:not(&amp;quot;+a+&amp;quot;)&amp;quot;),1===b.length&amp;amp;&amp;amp;1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=[],d=this,e=d.length;if(&amp;quot;string&amp;quot;!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;e&amp;gt;b;b++)if(n.contains(d[b],this))return!0}));for(b=0;e&amp;gt;b;b++)n.find(a,d[b],c);return c=this.pushStack(e&amp;gt;1?n.unique(c):c),c.selector=this.selector?this.selector+&amp;quot; &amp;quot;+a:a,c},filter:function(a){return this.pushStack(z(this,a||[],!1))},not:function(a){return this.pushStack(z(this,a||[],!0))},is:function(a){return!!z(this,&amp;quot;string&amp;quot;==typeof a&amp;amp;&amp;amp;w.test(a)?n(a):a||[],!1).length}});var A,B=/^(?:\s*(&amp;lt;[\w\W]+&amp;gt;)[^&amp;gt;]*|#([\w-]*))$/,C=n.fn.init=function(a,b,c){var e,f;if(!a)return this;if(c=c||A,&amp;quot;string&amp;quot;==typeof a){if(e=&amp;quot;&amp;lt;&amp;quot;===a.charAt(0)&amp;amp;&amp;amp;&amp;quot;&amp;gt;&amp;quot;===a.charAt(a.length-1)&amp;amp;&amp;amp;a.length&amp;gt;=3?[null,a,null]:B.exec(a),!e||!e[1]&amp;amp;&amp;amp;b)return!b||b.jquery?(b||c).find(a):this.constructor(b).find(a);if(e[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(e[1],b&amp;amp;&amp;amp;b.nodeType?b.ownerDocument||b:d,!0)),x.test(e[1])&amp;amp;&amp;amp;n.isPlainObject(b))for(e in b)n.isFunction(this[e])?this&lt;a href="b[e]">e&lt;/a>:this.attr(e,b[e]);return this}if(f=d.getElementById(e[2]),f&amp;amp;&amp;amp;f.parentNode){if(f.id!==e[2])return A.find(a);this.length=1,this[0]=f}return this.context=d,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?&amp;quot;undefined&amp;quot;!=typeof c.ready?c.ready(a):a(n):(void 0!==a.selector&amp;amp;&amp;amp;(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};C.prototype=n.fn,A=n(d);var D=/^(?:parents|prev(?:Until|All))/,E={children:!0,contents:!0,next:!0,prev:!0};n.fn.extend({has:function(a){var b,c=n(a,this),d=c.length;return this.filter(function(){for(b=0;d&amp;gt;b;b++)if(n.contains(this,c[b]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=w.test(a)||&amp;quot;string&amp;quot;!=typeof a?n(a,b||this.context):0;e&amp;gt;d;d++)for(c=this[d];c&amp;amp;&amp;amp;c!==b;c=c.parentNode)if(c.nodeType&amp;lt;11&amp;amp;&amp;amp;(g?g.index(c)&amp;gt;-1:1===c.nodeType&amp;amp;&amp;amp;n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length&amp;gt;1?n.uniqueSort(f):f)},index:function(a){return a?&amp;quot;string&amp;quot;==typeof a?n.inArray(this[0],n(a)):n.inArray(a.jquery?a[0]:a,this):this[0]&amp;amp;&amp;amp;this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.uniqueSort(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function F(a,b){do a=a[b];while(a&amp;amp;&amp;amp;1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&amp;amp;&amp;amp;11!==b.nodeType?b:null},parents:function(a){return u(a,&amp;quot;parentNode&amp;quot;)},parentsUntil:function(a,b,c){return u(a,&amp;quot;parentNode&amp;quot;,c)},next:function(a){return F(a,&amp;quot;nextSibling&amp;quot;)},prev:function(a){return F(a,&amp;quot;previousSibling&amp;quot;)},nextAll:function(a){return u(a,&amp;quot;nextSibling&amp;quot;)},prevAll:function(a){return u(a,&amp;quot;previousSibling&amp;quot;)},nextUntil:function(a,b,c){return u(a,&amp;quot;nextSibling&amp;quot;,c)},prevUntil:function(a,b,c){return u(a,&amp;quot;previousSibling&amp;quot;,c)},siblings:function(a){return v((a.parentNode||{}).firstChild,a)},children:function(a){return v(a.firstChild)},contents:function(a){return n.nodeName(a,&amp;quot;iframe&amp;quot;)?a.contentDocument||a.contentWindow.document:n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return&amp;quot;Until&amp;quot;!==a.slice(-5)&amp;amp;&amp;amp;(d=c),d&amp;amp;&amp;amp;&amp;quot;string&amp;quot;==typeof d&amp;amp;&amp;amp;(e=n.filter(d,e)),this.length&amp;gt;1&amp;amp;&amp;amp;(E[a]||(e=n.uniqueSort(e)),D.test(a)&amp;amp;&amp;amp;(e=e.reverse())),this.pushStack(e)}});var G=/\S+/g;function H(a){var b={};return n.each(a.match(G)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a=&amp;quot;string&amp;quot;==typeof a?H(a):n.extend({},a);var b,c,d,e,f=[],g=[],h=-1,i=function(){for(e=a.once,d=b=!0;g.length;h=-1){c=g.shift();while(++h&amp;lt;f.length)f[h].apply(c[0],c[1])===!1&amp;amp;&amp;amp;a.stopOnFalse&amp;amp;&amp;amp;(h=f.length,c=!1)}a.memory||(c=!1),b=!1,e&amp;amp;&amp;amp;(f=c?[]:&amp;quot;&amp;quot;)},j={add:function(){return f&amp;amp;&amp;amp;(c&amp;amp;&amp;amp;!b&amp;amp;&amp;amp;(h=f.length-1,g.push(c)),function d(b){n.each(b,function(b,c){n.isFunction(c)?a.unique&amp;amp;&amp;amp;j.has(c)||f.push(c):c&amp;amp;&amp;amp;c.length&amp;amp;&amp;amp;&amp;quot;string&amp;quot;!==n.type(c)&amp;amp;&amp;amp;d(c)})}(arguments),c&amp;amp;&amp;amp;!b&amp;amp;&amp;amp;i()),this},remove:function(){return n.each(arguments,function(a,b){var c;while((c=n.inArray(b,f,c))&amp;gt;-1)f.splice(c,1),h&amp;gt;=c&amp;amp;&amp;amp;h&amp;ndash;}),this},has:function(a){return a?n.inArray(a,f)&amp;gt;-1:f.length&amp;gt;0},empty:function(){return f&amp;amp;&amp;amp;(f=[]),this},disable:function(){return e=g=[],f=c=&amp;quot;&amp;quot;,this},disabled:function(){return!f},lock:function(){return e=!0,c||j.disable(),this},locked:function(){return!!e},fireWith:function(a,c){return e||(c=c||[],c=[a,c.slice?c.slice():c],g.push(c),b||i()),this},fire:function(){return j.fireWith(this,arguments),this},fired:function(){return!!d}};return j},n.extend({Deferred:function(a){var b=[[&amp;quot;resolve&amp;quot;,&amp;quot;done&amp;quot;,n.Callbacks(&amp;quot;once memory&amp;quot;),&amp;quot;resolved&amp;quot;],[&amp;quot;reject&amp;quot;,&amp;quot;fail&amp;quot;,n.Callbacks(&amp;quot;once memory&amp;quot;),&amp;quot;rejected&amp;quot;],[&amp;quot;notify&amp;quot;,&amp;quot;progress&amp;quot;,n.Callbacks(&amp;quot;memory&amp;quot;)]],c=&amp;quot;pending&amp;quot;,d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&amp;amp;&amp;amp;a[b];e[f[1]](function(){var a=g&amp;amp;&amp;amp;g.apply(this,arguments);a&amp;amp;&amp;amp;n.isFunction(a.promise)?a.promise().progress(c.notify).done(c.resolve).fail(c.reject):c&lt;a href="this===d?c.promise%28%29:this,g?[a]:arguments">f[0]+&amp;quot;With&amp;quot;&lt;/a>})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&amp;amp;&amp;amp;g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e&lt;a href="this===e?d:this,arguments">f[0]+&amp;quot;With&amp;quot;&lt;/a>,this},e[f[0]+&amp;quot;With&amp;quot;]=g.fireWith}),d.promise(e),a&amp;amp;&amp;amp;a.call(e,e),e},when:function(a){var b=0,c=e.call(arguments),d=c.length,f=1!==d||a&amp;amp;&amp;amp;n.isFunction(a.promise)?d:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length&amp;gt;1?e.call(arguments):d,c===i?g.notifyWith(b,c):&amp;ndash;f||g.resolveWith(b,c)}},i,j,k;if(d&amp;gt;1)for(i=new Array(d),j=new Array(d),k=new Array(d);d&amp;gt;b;b++)c[b]&amp;amp;&amp;amp;n.isFunction(c[b].promise)?c[b].promise().progress(h(b,j,i)).done(h(b,k,c)).fail(g.reject):&amp;ndash;f;return f||g.resolveWith(k,c),g.promise()}});var I;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?&amp;ndash;n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&amp;amp;&amp;amp;&amp;ndash;n.readyWait&amp;gt;0||(I.resolveWith(d,[n]),n.fn.triggerHandler&amp;amp;&amp;amp;(n(d).triggerHandler(&amp;quot;ready&amp;quot;),n(d).off(&amp;quot;ready&amp;quot;))))}});function J(){d.addEventListener?(d.removeEventListener(&amp;quot;DOMContentLoaded&amp;quot;,K),a.removeEventListener(&amp;quot;load&amp;quot;,K)):(d.detachEvent(&amp;quot;onreadystatechange&amp;quot;,K),a.detachEvent(&amp;quot;onload&amp;quot;,K))}function K(){(d.addEventListener||&amp;quot;load&amp;quot;===a.event.type||&amp;quot;complete&amp;quot;===d.readyState)&amp;amp;&amp;amp;(J(),n.ready())}n.ready.promise=function(b){if(!I)if(I=n.Deferred(),&amp;quot;complete&amp;quot;===d.readyState||&amp;quot;loading&amp;quot;!==d.readyState&amp;amp;&amp;amp;!d.documentElement.doScroll)a.setTimeout(n.ready);else if(d.addEventListener)d.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;,K),a.addEventListener(&amp;quot;load&amp;quot;,K);else{d.attachEvent(&amp;quot;onreadystatechange&amp;quot;,K),a.attachEvent(&amp;quot;onload&amp;quot;,K);var c=!1;try{c=null==a.frameElement&amp;amp;&amp;amp;d.documentElement}catch(e){}c&amp;amp;&amp;amp;c.doScroll&amp;amp;&amp;amp;!function f(){if(!n.isReady){try{c.doScroll(&amp;quot;left&amp;quot;)}catch(b){return a.setTimeout(f,50)}J(),n.ready()}}()}return I.promise(b)},n.ready.promise();var L;for(L in n(l))break;l.ownFirst=&amp;quot;0&amp;quot;===L,l.inlineBlockNeedsLayout=!1,n(function(){var a,b,c,e;c=d.getElementsByTagName(&amp;quot;body&amp;quot;)[0],c&amp;amp;&amp;amp;c.style&amp;amp;&amp;amp;(b=d.createElement(&amp;quot;div&amp;quot;),e=d.createElement(&amp;quot;div&amp;quot;),e.style.cssText=&amp;quot;position:absolute;border:0;width:0;height:0;top:0;left:-9999px&amp;quot;,c.appendChild(e).appendChild(b),&amp;quot;undefined&amp;quot;!=typeof b.style.zoom&amp;amp;&amp;amp;(b.style.cssText=&amp;quot;display:inline;margin:0;border:0;padding:1px;width:1px;zoom:1&amp;quot;,l.inlineBlockNeedsLayout=a=3===b.offsetWidth,a&amp;amp;&amp;amp;(c.style.zoom=1)),c.removeChild(e))}),function(){var a=d.createElement(&amp;quot;div&amp;quot;);l.deleteExpando=!0;try{delete a.test}catch(b){l.deleteExpando=!1}a=null}();var M=function(a){var b=n.noData[(a.nodeName+&amp;quot; &amp;quot;).toLowerCase()],c=+a.nodeType||1;return 1!==c&amp;amp;&amp;amp;9!==c?!1:!b||b!==!0&amp;amp;&amp;amp;a.getAttribute(&amp;quot;classid&amp;quot;)===b},N=/^(?:{[\w\W]*}|[[\w\W]*])$/,O=/([A-Z])/g;function P(a,b,c){if(void 0===c&amp;amp;&amp;amp;1===a.nodeType){var d=&amp;quot;data-&amp;quot;+b.replace(O,&amp;quot;-$1&amp;quot;).toLowerCase();if(c=a.getAttribute(d),&amp;quot;string&amp;quot;==typeof c){try{c=&amp;quot;true&amp;quot;===c?!0:&amp;quot;false&amp;quot;===c?!1:&amp;quot;null&amp;quot;===c?null:+c+&amp;quot;&amp;quot;===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}n.data(a,b,c)}else c=void 0;
}return c}function Q(a){var b;for(b in a)if((&amp;quot;data&amp;quot;!==b||!n.isEmptyObject(a[b]))&amp;amp;&amp;amp;&amp;quot;toJSON&amp;quot;!==b)return!1;return!0}function R(a,b,d,e){if(M(a)){var f,g,h=n.expando,i=a.nodeType,j=i?n.cache:a,k=i?a[h]:a[h]&amp;amp;&amp;amp;h;if(k&amp;amp;&amp;amp;j[k]&amp;amp;&amp;amp;(e||j[k].data)||void 0!==d||&amp;quot;string&amp;quot;!=typeof b)return k||(k=i?a[h]=c.pop()||n.guid++:h),j[k]||(j[k]=i?{}:{toJSON:n.noop}),&amp;quot;object&amp;quot;!=typeof b&amp;amp;&amp;amp;&amp;quot;function&amp;quot;!=typeof b||(e?j[k]=n.extend(j[k],b):j[k].data=n.extend(j[k].data,b)),g=j[k],e||(g.data||(g.data={}),g=g.data),void 0!==d&amp;amp;&amp;amp;(g[n.camelCase(b)]=d),&amp;quot;string&amp;quot;==typeof b?(f=g[b],null==f&amp;amp;&amp;amp;(f=g[n.camelCase(b)])):f=g,f}}function S(a,b,c){if(M(a)){var d,e,f=a.nodeType,g=f?n.cache:a,h=f?a[n.expando]:n.expando;if(g[h]){if(b&amp;amp;&amp;amp;(d=c?g[h]:g[h].data)){n.isArray(b)?b=b.concat(n.map(b,n.camelCase)):b in d?b=[b]:(b=n.camelCase(b),b=b in d?[b]:b.split(&amp;quot; &amp;quot;)),e=b.length;while(e&amp;ndash;)delete d[b[e]];if(c?!Q(d):!n.isEmptyObject(d))return}(c||(delete g[h].data,Q(g[h])))&amp;amp;&amp;amp;(f?n.cleanData([a],!0):l.deleteExpando||g!=g.window?delete g[h]:g[h]=void 0)}}}n.extend({cache:{},noData:{&amp;quot;applet &amp;quot;:!0,&amp;quot;embed &amp;quot;:!0,&amp;quot;object &amp;quot;:&amp;quot;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&amp;quot;},hasData:function(a){return a=a.nodeType?n.cache[a[n.expando]]:a[n.expando],!!a&amp;amp;&amp;amp;!Q(a)},data:function(a,b,c){return R(a,b,c)},removeData:function(a,b){return S(a,b)},_data:function(a,b,c){return R(a,b,c,!0)},_removeData:function(a,b){return S(a,b,!0)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&amp;amp;&amp;amp;f.attributes;if(void 0===a){if(this.length&amp;amp;&amp;amp;(e=n.data(f),1===f.nodeType&amp;amp;&amp;amp;!n._data(f,&amp;quot;parsedAttrs&amp;quot;))){c=g.length;while(c&amp;ndash;)g[c]&amp;amp;&amp;amp;(d=g[c].name,0===d.indexOf(&amp;quot;data-&amp;quot;)&amp;amp;&amp;amp;(d=n.camelCase(d.slice(5)),P(f,d,e[d])));n._data(f,&amp;quot;parsedAttrs&amp;quot;,!0)}return e}return&amp;quot;object&amp;quot;==typeof a?this.each(function(){n.data(this,a)}):arguments.length&amp;gt;1?this.each(function(){n.data(this,a,b)}):f?P(f,a,n.data(f,a)):void 0},removeData:function(a){return this.each(function(){n.removeData(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||&amp;quot;fx&amp;quot;)+&amp;quot;queue&amp;quot;,d=n._data(a,b),c&amp;amp;&amp;amp;(!d||n.isArray(c)?d=n._data(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||&amp;quot;fx&amp;quot;;var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};&amp;quot;inprogress&amp;quot;===e&amp;amp;&amp;amp;(e=c.shift(),d&amp;ndash;),e&amp;amp;&amp;amp;(&amp;quot;fx&amp;quot;===b&amp;amp;&amp;amp;c.unshift(&amp;quot;inprogress&amp;quot;),delete f.stop,e.call(a,g,f)),!d&amp;amp;&amp;amp;f&amp;amp;&amp;amp;f.empty.fire()},_queueHooks:function(a,b){var c=b+&amp;quot;queueHooks&amp;quot;;return n._data(a,c)||n._data(a,c,{empty:n.Callbacks(&amp;quot;once memory&amp;quot;).add(function(){n._removeData(a,b+&amp;quot;queue&amp;quot;),n._removeData(a,c)})})}}),n.fn.extend({queue:function(a,b){var c=2;return&amp;quot;string&amp;quot;!=typeof a&amp;amp;&amp;amp;(b=a,a=&amp;quot;fx&amp;quot;,c&amp;ndash;),arguments.length&amp;lt;c?n.queue(this[0],a):void 0===b?this:this.each(function(){var c=n.queue(this,a,b);n._queueHooks(this,a),&amp;quot;fx&amp;quot;===a&amp;amp;&amp;amp;&amp;quot;inprogress&amp;quot;!==c[0]&amp;amp;&amp;amp;n.dequeue(this,a)})},dequeue:function(a){return this.each(function(){n.dequeue(this,a)})},clearQueue:function(a){return this.queue(a||&amp;quot;fx&amp;quot;,[])},promise:function(a,b){var c,d=1,e=n.Deferred(),f=this,g=this.length,h=function(){&amp;ndash;d||e.resolveWith(f,[f])};&amp;quot;string&amp;quot;!=typeof a&amp;amp;&amp;amp;(b=a,a=void 0),a=a||&amp;quot;fx&amp;quot;;while(g&amp;ndash;)c=n._data(f[g],a+&amp;quot;queueHooks&amp;quot;),c&amp;amp;&amp;amp;c.empty&amp;amp;&amp;amp;(d++,c.empty.add(h));return h(),e.promise(b)}}),function(){var a;l.shrinkWrapBlocks=function(){if(null!=a)return a;a=!1;var b,c,e;return c=d.getElementsByTagName(&amp;quot;body&amp;quot;)[0],c&amp;amp;&amp;amp;c.style?(b=d.createElement(&amp;quot;div&amp;quot;),e=d.createElement(&amp;quot;div&amp;quot;),e.style.cssText=&amp;quot;position:absolute;border:0;width:0;height:0;top:0;left:-9999px&amp;quot;,c.appendChild(e).appendChild(b),&amp;quot;undefined&amp;quot;!=typeof b.style.zoom&amp;amp;&amp;amp;(b.style.cssText=&amp;quot;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:1px;width:1px;zoom:1&amp;quot;,b.appendChild(d.createElement(&amp;quot;div&amp;quot;)).style.width=&amp;quot;5px&amp;quot;,a=3!==b.offsetWidth),c.removeChild(e),a):void 0}}();var T=/[+-]?(?:\d*.|)\d+(?:[eE][+-]?\d+|)/.source,U=new RegExp(&amp;quot;^(?:([+-])=|)(&amp;quot;+T+&amp;quot;)([a-z%]*)$&amp;quot;,&amp;quot;i&amp;quot;),V=[&amp;quot;Top&amp;quot;,&amp;quot;Right&amp;quot;,&amp;quot;Bottom&amp;quot;,&amp;quot;Left&amp;quot;],W=function(a,b){return a=b||a,&amp;quot;none&amp;quot;===n.css(a,&amp;quot;display&amp;quot;)||!n.contains(a.ownerDocument,a)};function X(a,b,c,d){var e,f=1,g=20,h=d?function(){return d.cur()}:function(){return n.css(a,b,&amp;quot;&amp;quot;)},i=h(),j=c&amp;amp;&amp;amp;c[3]||(n.cssNumber[b]?&amp;quot;&amp;quot;:&amp;quot;px&amp;quot;),k=(n.cssNumber[b]||&amp;quot;px&amp;quot;!==j&amp;amp;&amp;amp;+i)&amp;amp;&amp;amp;U.exec(n.css(a,b));if(k&amp;amp;&amp;amp;k[3]!==j){j=j||k[3],c=c||[],k=+i||1;do f=f||&amp;quot;.5&amp;quot;,k/=f,n.style(a,b,k+j);while(f!==(f=h()/i)&amp;amp;&amp;amp;1!==f&amp;amp;&amp;amp;&amp;ndash;g)}return c&amp;amp;&amp;amp;(k=+k||+i||0,e=c[1]?k+(c[1]+1)*c[2]:+c[2],d&amp;amp;&amp;amp;(d.unit=j,d.start=k,d.end=e)),e}var Y=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if(&amp;quot;object&amp;quot;===n.type(c)){e=!0;for(h in c)Y(a,b,h,c[h],!0,f,g)}else if(void 0!==d&amp;amp;&amp;amp;(e=!0,n.isFunction(d)||(g=!0),j&amp;amp;&amp;amp;(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i&amp;gt;h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f},Z=/^(?:checkbox|radio)$/i,$=/&amp;lt;([\w:-]+)/,_=/^$|/(?:java|ecma)script/i,aa=/^\s+/,ba=&amp;quot;abbr|article|aside|audio|bdi|canvas|data|datalist|details|dialog|figcaption|figure|footer|header|hgroup|main|mark|meter|nav|output|picture|progress|section|summary|template|time|video&amp;quot;;function ca(a){var b=ba.split(&amp;quot;|&amp;quot;),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}!function(){var a=d.createElement(&amp;quot;div&amp;quot;),b=d.createDocumentFragment(),c=d.createElement(&amp;quot;input&amp;quot;);a.innerHTML=&amp;quot; &amp;lt;link/&amp;gt;&amp;lt;table&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;a href='https://abraae.netlify.app/a'&amp;gt;a&amp;lt;/a&amp;gt;&amp;lt;input type='checkbox'/&amp;gt;&amp;quot;,l.leadingWhitespace=3===a.firstChild.nodeType,l.tbody=!a.getElementsByTagName(&amp;quot;tbody&amp;quot;).length,l.htmlSerialize=!!a.getElementsByTagName(&amp;quot;link&amp;quot;).length,l.html5Clone=&amp;quot;&amp;lt;:nav&amp;gt;&amp;lt;/:nav&amp;gt;&amp;quot;!==d.createElement(&amp;quot;nav&amp;quot;).cloneNode(!0).outerHTML,c.type=&amp;quot;checkbox&amp;quot;,c.checked=!0,b.appendChild(c),l.appendChecked=c.checked,a.innerHTML=&amp;quot;&amp;lt;textarea&amp;gt;x&amp;lt;/textarea&amp;gt;&amp;quot;,l.noCloneChecked=!!a.cloneNode(!0).lastChild.defaultValue,b.appendChild(a),c=d.createElement(&amp;quot;input&amp;quot;),c.setAttribute(&amp;quot;type&amp;quot;,&amp;quot;radio&amp;quot;),c.setAttribute(&amp;quot;checked&amp;quot;,&amp;quot;checked&amp;quot;),c.setAttribute(&amp;quot;name&amp;quot;,&amp;quot;t&amp;quot;),a.appendChild(c),l.checkClone=a.cloneNode(!0).cloneNode(!0).lastChild.checked,l.noCloneEvent=!!a.addEventListener,a[n.expando]=1,l.attributes=!a.getAttribute(n.expando)}();var da={option:[1,&amp;quot;&amp;lt;select multiple='multiple'&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/select&amp;gt;&amp;quot;],legend:[1,&amp;quot;&amp;lt;fieldset&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/fieldset&amp;gt;&amp;quot;],area:[1,&amp;quot;&amp;lt;map&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/map&amp;gt;&amp;quot;],param:[1,&amp;quot;&amp;lt;object&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/object&amp;gt;&amp;quot;],thead:[1,&amp;quot;&amp;lt;table&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/table&amp;gt;&amp;quot;],tr:[2,&amp;quot;&amp;lt;table&amp;gt;&amp;lt;tbody&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;quot;],col:[2,&amp;quot;&amp;lt;table&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;colgroup&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/colgroup&amp;gt;&amp;lt;/table&amp;gt;&amp;quot;],td:[3,&amp;quot;&amp;lt;table&amp;gt;&amp;lt;tbody&amp;gt;&amp;lt;tr&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/tr&amp;gt;&amp;lt;/tbody&amp;gt;&amp;lt;/table&amp;gt;&amp;quot;],_default:l.htmlSerialize?[0,&amp;quot;&amp;quot;,&amp;quot;&amp;quot;]:[1,&amp;quot;X&amp;lt;div&amp;gt;&amp;quot;,&amp;quot;&amp;lt;/div&amp;gt;&amp;quot;]};da.optgroup=da.option,da.tbody=da.tfoot=da.colgroup=da.caption=da.thead,da.th=da.td;function ea(a,b){var c,d,e=0,f=&amp;quot;undefined&amp;quot;!=typeof a.getElementsByTagName?a.getElementsByTagName(b||&amp;quot;*&amp;quot;):&amp;quot;undefined&amp;quot;!=typeof a.querySelectorAll?a.querySelectorAll(b||&amp;quot;*&amp;quot;):void 0;if(!f)for(f=[],c=a.childNodes||a;null!=(d=c[e]);e++)!b||n.nodeName(d,b)?f.push(d):n.merge(f,ea(d,b));return void 0===b||b&amp;amp;&amp;amp;n.nodeName(a,b)?n.merge([a],f):f}function fa(a,b){for(var c,d=0;null!=(c=a[d]);d++)n._data(c,&amp;quot;globalEval&amp;quot;,!b||n._data(b[d],&amp;quot;globalEval&amp;quot;))}var ga=/&amp;lt;|&amp;amp;#?\w+;/,ha=/&amp;lt;tbody/i;function ia(a){Z.test(a.type)&amp;amp;&amp;amp;(a.defaultChecked=a.checked)}function ja(a,b,c,d,e){for(var f,g,h,i,j,k,m,o=a.length,p=ca(b),q=[],r=0;o&amp;gt;r;r++)if(g=a[r],g||0===g)if(&amp;quot;object&amp;quot;===n.type(g))n.merge(q,g.nodeType?[g]:g);else if(ga.test(g)){i=i||p.appendChild(b.createElement(&amp;quot;div&amp;quot;)),j=($.exec(g)||[&amp;quot;&amp;quot;,&amp;quot;&amp;quot;])[1].toLowerCase(),m=da[j]||da._default,i.innerHTML=m[1]+n.htmlPrefilter(g)+m[2],f=m[0];while(f&amp;ndash;)i=i.lastChild;if(!l.leadingWhitespace&amp;amp;&amp;amp;aa.test(g)&amp;amp;&amp;amp;q.push(b.createTextNode(aa.exec(g)[0])),!l.tbody){g=&amp;quot;table&amp;quot;!==j||ha.test(g)?&amp;quot;&amp;lt;table&amp;gt;&amp;quot;!==m[1]||ha.test(g)?0:i:i.firstChild,f=g&amp;amp;&amp;amp;g.childNodes.length;while(f&amp;ndash;)n.nodeName(k=g.childNodes[f],&amp;quot;tbody&amp;quot;)&amp;amp;&amp;amp;!k.childNodes.length&amp;amp;&amp;amp;g.removeChild(k)}n.merge(q,i.childNodes),i.textContent=&amp;quot;&amp;quot;;while(i.firstChild)i.removeChild(i.firstChild);i=p.lastChild}else q.push(b.createTextNode(g));i&amp;amp;&amp;amp;p.removeChild(i),l.appendChecked||n.grep(ea(q,&amp;quot;input&amp;quot;),ia),r=0;while(g=q[r++])if(d&amp;amp;&amp;amp;n.inArray(g,d)&amp;gt;-1)e&amp;amp;&amp;amp;e.push(g);else if(h=n.contains(g.ownerDocument,g),i=ea(p.appendChild(g),&amp;quot;script&amp;quot;),h&amp;amp;&amp;amp;fa(i),c){f=0;while(g=i[f++])_.test(g.type||&amp;quot;&amp;quot;)&amp;amp;&amp;amp;c.push(g)}return i=null,p}!function(){var b,c,e=d.createElement(&amp;quot;div&amp;quot;);for(b in{submit:!0,change:!0,focusin:!0})c=&amp;quot;on&amp;quot;+b,(l[b]=c in a)||(e.setAttribute(c,&amp;quot;t&amp;quot;),l[b]=e.attributes[c].expando===!1);e=null}();var ka=/^(?:input|select|textarea)$/i,la=/^key/,ma=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,na=/^(?:focusinfocus|focusoutblur)$/,oa=/^([^.]*)(?:.(.+)|)/;function pa(){return!0}function qa(){return!1}function ra(){try{return d.activeElement}catch(a){}}function sa(a,b,c,d,e,f){var g,h;if(&amp;quot;object&amp;quot;==typeof b){&amp;quot;string&amp;quot;!=typeof c&amp;amp;&amp;amp;(d=d||c,c=void 0);for(h in b)sa(a,h,c,d,b[h],f);return a}if(null==d&amp;amp;&amp;amp;null==e?(e=c,d=c=void 0):null==e&amp;amp;&amp;amp;(&amp;quot;string&amp;quot;==typeof c?(e=d,d=void 0):(e=d,d=c,c=void 0)),e===!1)e=qa;else if(!e)return a;return 1===f&amp;amp;&amp;amp;(g=e,e=function(a){return n().off(a),g.apply(this,arguments)},e.guid=g.guid||(g.guid=n.guid++)),a.each(function(){n.event.add(this,b,e,d,c)})}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n._data(a);if(r){c.handler&amp;amp;&amp;amp;(i=c,c=i.handler,e=i.selector),c.guid||(c.guid=n.guid++),(g=r.events)||(g=r.events={}),(k=r.handle)||(k=r.handle=function(a){return&amp;quot;undefined&amp;quot;==typeof n||a&amp;amp;&amp;amp;n.event.triggered===a.type?void 0:n.event.dispatch.apply(k.elem,arguments)},k.elem=a),b=(b||&amp;quot;&amp;quot;).match(G)||[&amp;quot;&amp;quot;],h=b.length;while(h&amp;ndash;)f=oa.exec(b[h])||[],o=q=f[1],p=(f[2]||&amp;quot;&amp;quot;).split(&amp;quot;.&amp;quot;).sort(),o&amp;amp;&amp;amp;(j=n.event.special[o]||{},o=(e?j.delegateType:j.bindType)||o,j=n.event.special[o]||{},l=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&amp;amp;&amp;amp;n.expr.match.needsContext.test(e),namespace:p.join(&amp;quot;.&amp;quot;)},i),(m=g[o])||(m=g[o]=[],m.delegateCount=0,j.setup&amp;amp;&amp;amp;j.setup.call(a,d,p,k)!==!1||(a.addEventListener?a.addEventListener(o,k,!1):a.attachEvent&amp;amp;&amp;amp;a.attachEvent(&amp;quot;on&amp;quot;+o,k))),j.add&amp;amp;&amp;amp;(j.add.call(a,l),l.handler.guid||(l.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,l):m.push(l),n.event.global[o]=!0);a=null}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=n.hasData(a)&amp;amp;&amp;amp;n._data(a);if(r&amp;amp;&amp;amp;(k=r.events)){b=(b||&amp;quot;&amp;quot;).match(G)||[&amp;quot;&amp;quot;],j=b.length;while(j&amp;ndash;)if(h=oa.exec(b[j])||[],o=q=h[1],p=(h[2]||&amp;quot;&amp;quot;).split(&amp;quot;.&amp;quot;).sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=k[o]||[],h=h[2]&amp;amp;&amp;amp;new RegExp(&amp;quot;(^|\.)&amp;quot;+p.join(&amp;quot;\.(?:.*\.|)&amp;quot;)+&amp;quot;(\.|$)&amp;quot;),i=f=m.length;while(f&amp;ndash;)g=m[f],!e&amp;amp;&amp;amp;q!==g.origType||c&amp;amp;&amp;amp;c.guid!==g.guid||h&amp;amp;&amp;amp;!h.test(g.namespace)||d&amp;amp;&amp;amp;d!==g.selector&amp;amp;&amp;amp;(&amp;quot;**&amp;quot;!==d||!g.selector)||(m.splice(f,1),g.selector&amp;amp;&amp;amp;m.delegateCount&amp;ndash;,l.remove&amp;amp;&amp;amp;l.remove.call(a,g));i&amp;amp;&amp;amp;!m.length&amp;amp;&amp;amp;(l.teardown&amp;amp;&amp;amp;l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete k[o])}else for(o in k)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(k)&amp;amp;&amp;amp;(delete r.handle,n._removeData(a,&amp;quot;events&amp;quot;))}},trigger:function(b,c,e,f){var g,h,i,j,l,m,o,p=[e||d],q=k.call(b,&amp;quot;type&amp;quot;)?b.type:b,r=k.call(b,&amp;quot;namespace&amp;quot;)?b.namespace.split(&amp;quot;.&amp;quot;):[];if(i=m=e=e||d,3!==e.nodeType&amp;amp;&amp;amp;8!==e.nodeType&amp;amp;&amp;amp;!na.test(q+n.event.triggered)&amp;amp;&amp;amp;(q.indexOf(&amp;quot;.&amp;quot;)&amp;gt;-1&amp;amp;&amp;amp;(r=q.split(&amp;quot;.&amp;quot;),q=r.shift(),r.sort()),h=q.indexOf(&amp;quot;:&amp;quot;)&amp;lt;0&amp;amp;&amp;amp;&amp;quot;on&amp;quot;+q,b=b[n.expando]?b:new n.Event(q,&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b),b.isTrigger=f?2:3,b.namespace=r.join(&amp;quot;.&amp;quot;),b.rnamespace=b.namespace?new RegExp(&amp;quot;(^|\.)&amp;quot;+r.join(&amp;quot;\.(?:.*\.|)&amp;quot;)+&amp;quot;(\.|$)&amp;quot;):null,b.result=void 0,b.target||(b.target=e),c=null==c?[b]:n.makeArray(c,[b]),l=n.event.special[q]||{},f||!l.trigger||l.trigger.apply(e,c)!==!1)){if(!f&amp;amp;&amp;amp;!l.noBubble&amp;amp;&amp;amp;!n.isWindow(e)){for(j=l.delegateType||q,na.test(j+q)||(i=i.parentNode);i;i=i.parentNode)p.push(i),m=i;m===(e.ownerDocument||d)&amp;amp;&amp;amp;p.push(m.defaultView||m.parentWindow||a)}o=0;while((i=p[o++])&amp;amp;&amp;amp;!b.isPropagationStopped())b.type=o&amp;gt;1?j:l.bindType||q,g=(n._data(i,&amp;quot;events&amp;quot;)||{})[b.type]&amp;amp;&amp;amp;n._data(i,&amp;quot;handle&amp;quot;),g&amp;amp;&amp;amp;g.apply(i,c),g=h&amp;amp;&amp;amp;i[h],g&amp;amp;&amp;amp;g.apply&amp;amp;&amp;amp;M(i)&amp;amp;&amp;amp;(b.result=g.apply(i,c),b.result===!1&amp;amp;&amp;amp;b.preventDefault());if(b.type=q,!f&amp;amp;&amp;amp;!b.isDefaultPrevented()&amp;amp;&amp;amp;(!l._default||l._default.apply(p.pop(),c)===!1)&amp;amp;&amp;amp;M(e)&amp;amp;&amp;amp;h&amp;amp;&amp;amp;e[q]&amp;amp;&amp;amp;!n.isWindow(e)){m=e[h],m&amp;amp;&amp;amp;(e[h]=null),n.event.triggered=q;try{e&lt;a href="">q&lt;/a>}catch(s){}n.event.triggered=void 0,m&amp;amp;&amp;amp;(e[h]=m)}return b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,d,f,g,h=[],i=e.call(arguments),j=(n._data(this,&amp;quot;events&amp;quot;)||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&amp;amp;&amp;amp;!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&amp;amp;&amp;amp;!a.isImmediatePropagationStopped())a.rnamespace&amp;amp;&amp;amp;!a.rnamespace.test(g.namespace)||(a.handleObj=g,a.data=g.data,d=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==d&amp;amp;&amp;amp;(a.result=d)===!1&amp;amp;&amp;amp;(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&amp;amp;&amp;amp;k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&amp;amp;&amp;amp;i.nodeType&amp;amp;&amp;amp;(&amp;quot;click&amp;quot;!==a.type||isNaN(a.button)||a.button&amp;lt;1))for(;i!=this;i=i.parentNode||this)if(1===i.nodeType&amp;amp;&amp;amp;(i.disabled!==!0||&amp;quot;click&amp;quot;!==a.type)){for(d=[],c=0;h&amp;gt;c;c++)f=b[c],e=f.selector+&amp;quot; &amp;quot;,void 0===d[e]&amp;amp;&amp;amp;(d[e]=f.needsContext?n(e,this).index(i)&amp;gt;-1:n.find(e,this,null,[i]).length),d[e]&amp;amp;&amp;amp;d.push(f);d.length&amp;amp;&amp;amp;g.push({elem:i,handlers:d})}return h&amp;lt;b.length&amp;amp;&amp;amp;g.push({elem:this,handlers:b.slice(h)}),g},fix:function(a){if(a[n.expando])return a;var b,c,e,f=a.type,g=a,h=this.fixHooks[f];h||(this.fixHooks[f]=h=ma.test(f)?this.mouseHooks:la.test(f)?this.keyHooks:{}),e=h.props?this.props.concat(h.props):this.props,a=new n.Event(g),b=e.length;while(b&amp;ndash;)c=e[b],a[c]=g[c];return a.target||(a.target=g.srcElement||d),3===a.target.nodeType&amp;amp;&amp;amp;(a.target=a.target.parentNode),a.metaKey=!!a.metaKey,h.filter?h.filter(a,g):a},props:&amp;quot;altKey bubbles cancelable ctrlKey currentTarget detail eventPhase metaKey relatedTarget shiftKey target timeStamp view which&amp;quot;.split(&amp;quot; &amp;quot;),fixHooks:{},keyHooks:{props:&amp;quot;char charCode key keyCode&amp;quot;.split(&amp;quot; &amp;quot;),filter:function(a,b){return null==a.which&amp;amp;&amp;amp;(a.which=null!=b.charCode?b.charCode:b.keyCode),a}},mouseHooks:{props:&amp;quot;button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement&amp;quot;.split(&amp;quot; &amp;quot;),filter:function(a,b){var c,e,f,g=b.button,h=b.fromElement;return null==a.pageX&amp;amp;&amp;amp;null!=b.clientX&amp;amp;&amp;amp;(e=a.target.ownerDocument||d,f=e.documentElement,c=e.body,a.pageX=b.clientX+(f&amp;amp;&amp;amp;f.scrollLeft||c&amp;amp;&amp;amp;c.scrollLeft||0)-(f&amp;amp;&amp;amp;f.clientLeft||c&amp;amp;&amp;amp;c.clientLeft||0),a.pageY=b.clientY+(f&amp;amp;&amp;amp;f.scrollTop||c&amp;amp;&amp;amp;c.scrollTop||0)-(f&amp;amp;&amp;amp;f.clientTop||c&amp;amp;&amp;amp;c.clientTop||0)),!a.relatedTarget&amp;amp;&amp;amp;h&amp;amp;&amp;amp;(a.relatedTarget=h===a.target?b.toElement:h),a.which||void 0===g||(a.which=1&amp;amp;g?1:2&amp;amp;g?3:4&amp;amp;g?2:0),a}},special:{load:{noBubble:!0},focus:{trigger:function(){if(this!==ra()&amp;amp;&amp;amp;this.focus)try{return this.focus(),!1}catch(a){}},delegateType:&amp;quot;focusin&amp;quot;},blur:{trigger:function(){return this===ra()&amp;amp;&amp;amp;this.blur?(this.blur(),!1):void 0},delegateType:&amp;quot;focusout&amp;quot;},click:{trigger:function(){return n.nodeName(this,&amp;quot;input&amp;quot;)&amp;amp;&amp;amp;&amp;quot;checkbox&amp;quot;===this.type&amp;amp;&amp;amp;this.click?(this.click(),!1):void 0},_default:function(a){return n.nodeName(a.target,&amp;quot;a&amp;quot;)}},beforeunload:{postDispatch:function(a){void 0!==a.result&amp;amp;&amp;amp;a.originalEvent&amp;amp;&amp;amp;(a.originalEvent.returnValue=a.result)}}},simulate:function(a,b,c){var d=n.extend(new n.Event,c,{type:a,isSimulated:!0});n.event.trigger(d,null,b),d.isDefaultPrevented()&amp;amp;&amp;amp;c.preventDefault()}},n.removeEvent=d.removeEventListener?function(a,b,c){a.removeEventListener&amp;amp;&amp;amp;a.removeEventListener(b,c)}:function(a,b,c){var d=&amp;quot;on&amp;quot;+b;a.detachEvent&amp;amp;&amp;amp;(&amp;quot;undefined&amp;quot;==typeof a[d]&amp;amp;&amp;amp;(a[d]=null),a.detachEvent(d,c))},n.Event=function(a,b){return this instanceof n.Event?(a&amp;amp;&amp;amp;a.type?(this.originalEvent=a,this.type=a.type,this.isDefaultPrevented=a.defaultPrevented||void 0===a.defaultPrevented&amp;amp;&amp;amp;a.returnValue===!1?pa:qa):this.type=a,b&amp;amp;&amp;amp;n.extend(this,b),this.timeStamp=a&amp;amp;&amp;amp;a.timeStamp||n.now(),void(this[n.expando]=!0)):new n.Event(a,b)},n.Event.prototype={constructor:n.Event,isDefaultPrevented:qa,isPropagationStopped:qa,isImmediatePropagationStopped:qa,preventDefault:function(){var a=this.originalEvent;this.isDefaultPrevented=pa,a&amp;amp;&amp;amp;(a.preventDefault?a.preventDefault():a.returnValue=!1)},stopPropagation:function(){var a=this.originalEvent;this.isPropagationStopped=pa,a&amp;amp;&amp;amp;!this.isSimulated&amp;amp;&amp;amp;(a.stopPropagation&amp;amp;&amp;amp;a.stopPropagation(),a.cancelBubble=!0)},stopImmediatePropagation:function(){var a=this.originalEvent;this.isImmediatePropagationStopped=pa,a&amp;amp;&amp;amp;a.stopImmediatePropagation&amp;amp;&amp;amp;a.stopImmediatePropagation(),this.stopPropagation()}},n.each({mouseenter:&amp;quot;mouseover&amp;quot;,mouseleave:&amp;quot;mouseout&amp;quot;,pointerenter:&amp;quot;pointerover&amp;quot;,pointerleave:&amp;quot;pointerout&amp;quot;},function(a,b){n.event.special[a]={delegateType:b,bindType:b,handle:function(a){var c,d=this,e=a.relatedTarget,f=a.handleObj;return e&amp;amp;&amp;amp;(e===d||n.contains(d,e))||(a.type=f.origType,c=f.handler.apply(this,arguments),a.type=b),c}}}),l.submit||(n.event.special.submit={setup:function(){return n.nodeName(this,&amp;quot;form&amp;quot;)?!1:void n.event.add(this,&amp;quot;click._submit keypress._submit&amp;quot;,function(a){var b=a.target,c=n.nodeName(b,&amp;quot;input&amp;quot;)||n.nodeName(b,&amp;quot;button&amp;quot;)?n.prop(b,&amp;quot;form&amp;quot;):void 0;c&amp;amp;&amp;amp;!n._data(c,&amp;quot;submit&amp;quot;)&amp;amp;&amp;amp;(n.event.add(c,&amp;quot;submit._submit&amp;quot;,function(a){a._submitBubble=!0}),n._data(c,&amp;quot;submit&amp;quot;,!0))})},postDispatch:function(a){a._submitBubble&amp;amp;&amp;amp;(delete a._submitBubble,this.parentNode&amp;amp;&amp;amp;!a.isTrigger&amp;amp;&amp;amp;n.event.simulate(&amp;quot;submit&amp;quot;,this.parentNode,a))},teardown:function(){return n.nodeName(this,&amp;quot;form&amp;quot;)?!1:void n.event.remove(this,&amp;quot;._submit&amp;quot;)}}),l.change||(n.event.special.change={setup:function(){return ka.test(this.nodeName)?(&amp;quot;checkbox&amp;quot;!==this.type&amp;amp;&amp;amp;&amp;quot;radio&amp;quot;!==this.type||(n.event.add(this,&amp;quot;propertychange._change&amp;quot;,function(a){&amp;quot;checked&amp;quot;===a.originalEvent.propertyName&amp;amp;&amp;amp;(this._justChanged=!0)}),n.event.add(this,&amp;quot;click._change&amp;quot;,function(a){this._justChanged&amp;amp;&amp;amp;!a.isTrigger&amp;amp;&amp;amp;(this._justChanged=!1),n.event.simulate(&amp;quot;change&amp;quot;,this,a)})),!1):void n.event.add(this,&amp;quot;beforeactivate._change&amp;quot;,function(a){var b=a.target;ka.test(b.nodeName)&amp;amp;&amp;amp;!n._data(b,&amp;quot;change&amp;quot;)&amp;amp;&amp;amp;(n.event.add(b,&amp;quot;change._change&amp;quot;,function(a){!this.parentNode||a.isSimulated||a.isTrigger||n.event.simulate(&amp;quot;change&amp;quot;,this.parentNode,a)}),n._data(b,&amp;quot;change&amp;quot;,!0))})},handle:function(a){var b=a.target;return this!==b||a.isSimulated||a.isTrigger||&amp;quot;radio&amp;quot;!==b.type&amp;amp;&amp;amp;&amp;quot;checkbox&amp;quot;!==b.type?a.handleObj.handler.apply(this,arguments):void 0},teardown:function(){return n.event.remove(this,&amp;quot;._change&amp;quot;),!ka.test(this.nodeName)}}),l.focusin||n.each({focus:&amp;quot;focusin&amp;quot;,blur:&amp;quot;focusout&amp;quot;},function(a,b){var c=function(a){n.event.simulate(b,a.target,n.event.fix(a))};n.event.special[b]={setup:function(){var d=this.ownerDocument||this,e=n._data(d,b);e||d.addEventListener(a,c,!0),n._data(d,b,(e||0)+1)},teardown:function(){var d=this.ownerDocument||this,e=n._data(d,b)-1;e?n._data(d,b,e):(d.removeEventListener(a,c,!0),n._removeData(d,b))}}}),n.fn.extend({on:function(a,b,c,d){return sa(this,a,b,c,d)},one:function(a,b,c,d){return sa(this,a,b,c,d,1)},off:function(a,b,c){var d,e;if(a&amp;amp;&amp;amp;a.preventDefault&amp;amp;&amp;amp;a.handleObj)return d=a.handleObj,n(a.delegateTarget).off(d.namespace?d.origType+&amp;quot;.&amp;quot;+d.namespace:d.origType,d.selector,d.handler),this;if(&amp;quot;object&amp;quot;==typeof a){for(e in a)this.off(e,b,a[e]);return this}return b!==!1&amp;amp;&amp;amp;&amp;quot;function&amp;quot;!=typeof b||(c=b,b=void 0),c===!1&amp;amp;&amp;amp;(c=qa),this.each(function(){n.event.remove(this,a,c,b)})},trigger:function(a,b){return this.each(function(){n.event.trigger(a,b,this)})},triggerHandler:function(a,b){var c=this[0];return c?n.event.trigger(a,b,c,!0):void 0}});var ta=/ jQuery\d+=&amp;quot;(?:null|\d+)&amp;quot;/g,ua=new RegExp(&amp;quot;&amp;lt;(?:&amp;quot;+ba+&amp;quot;)[\s/&amp;gt;]&amp;quot;,&amp;quot;i&amp;quot;),va=/&amp;lt;(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:-]+)[^&amp;gt;]*)/&amp;gt;/gi,wa=/&amp;lt;script|&amp;lt;style|&amp;lt;link/i,xa=/checked\s*(?:[^=]|=\s*.checked.)/i,ya=/^true/(.*)/,za=/^\s*&amp;lt;!(?:[CDATA[|&amp;ndash;)|(?:]]|&amp;ndash;)&amp;gt;\s*$/g,Aa=ca(d),Ba=Aa.appendChild(d.createElement(&amp;quot;div&amp;quot;));function Ca(a,b){return n.nodeName(a,&amp;quot;table&amp;quot;)&amp;amp;&amp;amp;n.nodeName(11!==b.nodeType?b:b.firstChild,&amp;quot;tr&amp;quot;)?a.getElementsByTagName(&amp;quot;tbody&amp;quot;)[0]||a.appendChild(a.ownerDocument.createElement(&amp;quot;tbody&amp;quot;)):a}function Da(a){return a.type=(null!==n.find.attr(a,&amp;quot;type&amp;quot;))+&amp;quot;/&amp;quot;+a.type,a}function Ea(a){var b=ya.exec(a.type);return b?a.type=b[1]:a.removeAttribute(&amp;quot;type&amp;quot;),a}function Fa(a,b){if(1===b.nodeType&amp;amp;&amp;amp;n.hasData(a)){var c,d,e,f=n._data(a),g=n._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;e&amp;gt;d;d++)n.event.add(b,c,h[c][d])}g.data&amp;amp;&amp;amp;(g.data=n.extend({},g.data))}}function Ga(a,b){var c,d,e;if(1===b.nodeType){if(c=b.nodeName.toLowerCase(),!l.noCloneEvent&amp;amp;&amp;amp;b[n.expando]){e=n._data(b);for(d in e.events)n.removeEvent(b,d,e.handle);b.removeAttribute(n.expando)}&amp;quot;script&amp;quot;===c&amp;amp;&amp;amp;b.text!==a.text?(Da(b).text=a.text,Ea(b)):&amp;quot;object&amp;quot;===c?(b.parentNode&amp;amp;&amp;amp;(b.outerHTML=a.outerHTML),l.html5Clone&amp;amp;&amp;amp;a.innerHTML&amp;amp;&amp;amp;!n.trim(b.innerHTML)&amp;amp;&amp;amp;(b.innerHTML=a.innerHTML)):&amp;quot;input&amp;quot;===c&amp;amp;&amp;amp;Z.test(a.type)?(b.defaultChecked=b.checked=a.checked,b.value!==a.value&amp;amp;&amp;amp;(b.value=a.value)):&amp;quot;option&amp;quot;===c?b.defaultSelected=b.selected=a.defaultSelected:&amp;quot;input&amp;quot;!==c&amp;amp;&amp;amp;&amp;quot;textarea&amp;quot;!==c||(b.defaultValue=a.defaultValue)}}function Ha(a,b,c,d){b=f.apply([],b);var e,g,h,i,j,k,m=0,o=a.length,p=o-1,q=b[0],r=n.isFunction(q);if(r||o&amp;gt;1&amp;amp;&amp;amp;&amp;quot;string&amp;quot;==typeof q&amp;amp;&amp;amp;!l.checkClone&amp;amp;&amp;amp;xa.test(q))return a.each(function(e){var f=a.eq(e);r&amp;amp;&amp;amp;(b[0]=q.call(this,e,f.html())),Ha(f,b,c,d)});if(o&amp;amp;&amp;amp;(k=ja(b,a[0].ownerDocument,!1,a,d),e=k.firstChild,1===k.childNodes.length&amp;amp;&amp;amp;(k=e),e||d)){for(i=n.map(ea(k,&amp;quot;script&amp;quot;),Da),h=i.length;o&amp;gt;m;m++)g=k,m!==p&amp;amp;&amp;amp;(g=n.clone(g,!0,!0),h&amp;amp;&amp;amp;n.merge(i,ea(g,&amp;quot;script&amp;quot;))),c.call(a[m],g,m);if(h)for(j=i[i.length-1].ownerDocument,n.map(i,Ea),m=0;h&amp;gt;m;m++)g=i[m],_.test(g.type||&amp;quot;&amp;quot;)&amp;amp;&amp;amp;!n._data(g,&amp;quot;globalEval&amp;quot;)&amp;amp;&amp;amp;n.contains(j,g)&amp;amp;&amp;amp;(g.src?n._evalUrl&amp;amp;&amp;amp;n._evalUrl(g.src):n.globalEval((g.text||g.textContent||g.innerHTML||&amp;quot;&amp;quot;).replace(za,&amp;quot;&amp;quot;)));k=e=null}return a}function Ia(a,b,c){for(var d,e=b?n.filter(b,a):a,f=0;null!=(d=e[f]);f++)c||1!==d.nodeType||n.cleanData(ea(d)),d.parentNode&amp;amp;&amp;amp;(c&amp;amp;&amp;amp;n.contains(d.ownerDocument,d)&amp;amp;&amp;amp;fa(ea(d,&amp;quot;script&amp;quot;)),d.parentNode.removeChild(d));return a}n.extend({htmlPrefilter:function(a){return a.replace(va,&amp;quot;&amp;lt;$1&amp;gt;&amp;lt;/$2&amp;gt;&amp;quot;)},clone:function(a,b,c){var d,e,f,g,h,i=n.contains(a.ownerDocument,a);if(l.html5Clone||n.isXMLDoc(a)||!ua.test(&amp;quot;&amp;lt;&amp;quot;+a.nodeName+&amp;quot;&amp;gt;&amp;quot;)?f=a.cloneNode(!0):(Ba.innerHTML=a.outerHTML,Ba.removeChild(f=Ba.firstChild)),!(l.noCloneEvent&amp;amp;&amp;amp;l.noCloneChecked||1!==a.nodeType&amp;amp;&amp;amp;11!==a.nodeType||n.isXMLDoc(a)))for(d=ea(f),h=ea(a),g=0;null!=(e=h[g]);++g)d[g]&amp;amp;&amp;amp;Ga(e,d[g]);if(b)if(c)for(h=h||ea(a),d=d||ea(f),g=0;null!=(e=h[g]);g++)Fa(e,d[g]);else Fa(a,f);return d=ea(f,&amp;quot;script&amp;quot;),d.length&amp;gt;0&amp;amp;&amp;amp;fa(d,!i&amp;amp;&amp;amp;ea(a,&amp;quot;script&amp;quot;)),d=h=e=null,f},cleanData:function(a,b){for(var d,e,f,g,h=0,i=n.expando,j=n.cache,k=l.attributes,m=n.event.special;null!=(d=a[h]);h++)if((b||M(d))&amp;amp;&amp;amp;(f=d[i],g=f&amp;amp;&amp;amp;j[f])){if(g.events)for(e in g.events)m[e]?n.event.remove(d,e):n.removeEvent(d,e,g.handle);j[f]&amp;amp;&amp;amp;(delete j[f],k||&amp;quot;undefined&amp;quot;==typeof d.removeAttribute?d[i]=void 0:d.removeAttribute(i),c.push(f))}}}),n.fn.extend({domManip:Ha,detach:function(a){return Ia(this,a,!0)},remove:function(a){return Ia(this,a)},text:function(a){return Y(this,function(a){return void 0===a?n.text(this):this.empty().append((this[0]&amp;amp;&amp;amp;this[0].ownerDocument||d).createTextNode(a))},null,a,arguments.length)},append:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.appendChild(a)}})},prepend:function(){return Ha(this,arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=Ca(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return Ha(this,arguments,function(a){this.parentNode&amp;amp;&amp;amp;this.parentNode.insertBefore(a,this)})},after:function(){return Ha(this,arguments,function(a){this.parentNode&amp;amp;&amp;amp;this.parentNode.insertBefore(a,this.nextSibling)})},empty:function(){for(var a,b=0;null!=(a=this[b]);b++){1===a.nodeType&amp;amp;&amp;amp;n.cleanData(ea(a,!1));while(a.firstChild)a.removeChild(a.firstChild);a.options&amp;amp;&amp;amp;n.nodeName(a,&amp;quot;select&amp;quot;)&amp;amp;&amp;amp;(a.options.length=0)}return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return Y(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a)return 1===b.nodeType?b.innerHTML.replace(ta,&amp;quot;&amp;quot;):void 0;if(&amp;quot;string&amp;quot;==typeof a&amp;amp;&amp;amp;!wa.test(a)&amp;amp;&amp;amp;(l.htmlSerialize||!ua.test(a))&amp;amp;&amp;amp;(l.leadingWhitespace||!aa.test(a))&amp;amp;&amp;amp;!da[($.exec(a)||[&amp;quot;&amp;quot;,&amp;quot;&amp;quot;])[1].toLowerCase()]){a=n.htmlPrefilter(a);try{for(;d&amp;gt;c;c++)b=this[c]||{},1===b.nodeType&amp;amp;&amp;amp;(n.cleanData(ea(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&amp;amp;&amp;amp;this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=[];return Ha(this,arguments,function(b){var c=this.parentNode;n.inArray(this,a)&amp;lt;0&amp;amp;&amp;amp;(n.cleanData(ea(this)),c&amp;amp;&amp;amp;c.replaceChild(b,this))},a)}}),n.each({appendTo:&amp;quot;append&amp;quot;,prependTo:&amp;quot;prepend&amp;quot;,insertBefore:&amp;quot;before&amp;quot;,insertAfter:&amp;quot;after&amp;quot;,replaceAll:&amp;quot;replaceWith&amp;quot;},function(a,b){n.fn[a]=function(a){for(var c,d=0,e=[],f=n(a),h=f.length-1;h&amp;gt;=d;d++)c=d===h?this:this.clone(!0),n(f[d])&lt;a href="c">b&lt;/a>,g.apply(e,c.get());return this.pushStack(e)}});var Ja,Ka={HTML:&amp;quot;block&amp;quot;,BODY:&amp;quot;block&amp;quot;};function La(a,b){var c=n(b.createElement(a)).appendTo(b.body),d=n.css(c[0],&amp;quot;display&amp;quot;);return c.detach(),d}function Ma(a){var b=d,c=Ka[a];return c||(c=La(a,b),&amp;quot;none&amp;quot;!==c&amp;amp;&amp;amp;c||(Ja=(Ja||n(&amp;quot;&amp;lt;iframe frameborder='0' width='0' height='0'/&amp;gt;&amp;quot;)).appendTo(b.documentElement),b=(Ja[0].contentWindow||Ja[0].contentDocument).document,b.write(),b.close(),c=La(a,b),Ja.detach()),Ka[a]=c),c}var Na=/^margin/,Oa=new RegExp(&amp;quot;^(&amp;quot;+T+&amp;quot;)(?!px)[a-z%]+$&amp;quot;,&amp;quot;i&amp;quot;),Pa=function(a,b,c,d){var e,f,g={};for(f in b)g[f]=a.style[f],a.style[f]=b[f];e=c.apply(a,d||[]);for(f in b)a.style[f]=g[f];return e},Qa=d.documentElement;!function(){var b,c,e,f,g,h,i=d.createElement(&amp;quot;div&amp;quot;),j=d.createElement(&amp;quot;div&amp;quot;);if(j.style){j.style.cssText=&amp;quot;float:left;opacity:.5&amp;quot;,l.opacity=&amp;quot;0.5&amp;quot;===j.style.opacity,l.cssFloat=!!j.style.cssFloat,j.style.backgroundClip=&amp;quot;content-box&amp;quot;,j.cloneNode(!0).style.backgroundClip=&amp;quot;&amp;quot;,l.clearCloneStyle=&amp;quot;content-box&amp;quot;===j.style.backgroundClip,i=d.createElement(&amp;quot;div&amp;quot;),i.style.cssText=&amp;quot;border:0;width:8px;height:0;top:0;left:-9999px;padding:0;margin-top:1px;position:absolute&amp;quot;,j.innerHTML=&amp;quot;&amp;quot;,i.appendChild(j),l.boxSizing=&amp;quot;&amp;quot;===j.style.boxSizing||&amp;quot;&amp;quot;===j.style.MozBoxSizing||&amp;quot;&amp;quot;===j.style.WebkitBoxSizing,n.extend(l,{reliableHiddenOffsets:function(){return null==b&amp;amp;&amp;amp;k(),f},boxSizingReliable:function(){return null==b&amp;amp;&amp;amp;k(),e},pixelMarginRight:function(){return null==b&amp;amp;&amp;amp;k(),c},pixelPosition:function(){return null==b&amp;amp;&amp;amp;k(),b},reliableMarginRight:function(){return null==b&amp;amp;&amp;amp;k(),g},reliableMarginLeft:function(){return null==b&amp;amp;&amp;amp;k(),h}});function k(){var k,l,m=d.documentElement;m.appendChild(i),j.style.cssText=&amp;quot;-webkit-box-sizing:border-box;box-sizing:border-box;position:relative;display:block;margin:auto;border:1px;padding:1px;top:1%;width:50%&amp;quot;,b=e=h=!1,c=g=!0,a.getComputedStyle&amp;amp;&amp;amp;(l=a.getComputedStyle(j),b=&amp;quot;1%&amp;quot;!==(l||{}).top,h=&amp;quot;2px&amp;quot;===(l||{}).marginLeft,e=&amp;quot;4px&amp;quot;===(l||{width:&amp;quot;4px&amp;quot;}).width,j.style.marginRight=&amp;quot;50%&amp;quot;,c=&amp;quot;4px&amp;quot;===(l||{marginRight:&amp;quot;4px&amp;quot;}).marginRight,k=j.appendChild(d.createElement(&amp;quot;div&amp;quot;)),k.style.cssText=j.style.cssText=&amp;quot;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;display:block;margin:0;border:0;padding:0&amp;quot;,k.style.marginRight=k.style.width=&amp;quot;0&amp;quot;,j.style.width=&amp;quot;1px&amp;quot;,g=!parseFloat((a.getComputedStyle(k)||{}).marginRight),j.removeChild(k)),j.style.display=&amp;quot;none&amp;quot;,f=0===j.getClientRects().length,f&amp;amp;&amp;amp;(j.style.display=&amp;quot;&amp;quot;,j.innerHTML=&amp;quot;&amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;t&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;&amp;quot;,j.childNodes[0].style.borderCollapse=&amp;quot;separate&amp;quot;,k=j.getElementsByTagName(&amp;quot;td&amp;quot;),k[0].style.cssText=&amp;quot;margin:0;border:0;padding:0;display:none&amp;quot;,f=0===k[0].offsetHeight,f&amp;amp;&amp;amp;(k[0].style.display=&amp;quot;&amp;quot;,k[1].style.display=&amp;quot;none&amp;quot;,f=0===k[0].offsetHeight)),m.removeChild(i)}}}();var Ra,Sa,Ta=/^(top|right|bottom|left)$/;a.getComputedStyle?(Ra=function(b){var c=b.ownerDocument.defaultView;return c&amp;amp;&amp;amp;c.opener||(c=a),c.getComputedStyle(b)},Sa=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ra(a),g=c?c.getPropertyValue(b)||c[b]:void 0,&amp;quot;&amp;quot;!==g&amp;amp;&amp;amp;void 0!==g||n.contains(a.ownerDocument,a)||(g=n.style(a,b)),c&amp;amp;&amp;amp;!l.pixelMarginRight()&amp;amp;&amp;amp;Oa.test(g)&amp;amp;&amp;amp;Na.test(b)&amp;amp;&amp;amp;(d=h.width,e=h.minWidth,f=h.maxWidth,h.minWidth=h.maxWidth=h.width=g,g=c.width,h.width=d,h.minWidth=e,h.maxWidth=f),void 0===g?g:g+&amp;quot;&amp;quot;}):Qa.currentStyle&amp;amp;&amp;amp;(Ra=function(a){return a.currentStyle},Sa=function(a,b,c){var d,e,f,g,h=a.style;return c=c||Ra(a),g=c?c[b]:void 0,null==g&amp;amp;&amp;amp;h&amp;amp;&amp;amp;h[b]&amp;amp;&amp;amp;(g=h[b]),Oa.test(g)&amp;amp;&amp;amp;!Ta.test(b)&amp;amp;&amp;amp;(d=h.left,e=a.runtimeStyle,f=e&amp;amp;&amp;amp;e.left,f&amp;amp;&amp;amp;(e.left=a.currentStyle.left),h.left=&amp;quot;fontSize&amp;quot;===b?&amp;quot;1em&amp;quot;:g,g=h.pixelLeft+&amp;quot;px&amp;quot;,h.left=d,f&amp;amp;&amp;amp;(e.left=f)),void 0===g?g:g+&amp;quot;&amp;quot;||&amp;quot;auto&amp;quot;});function Ua(a,b){return{get:function(){return a()?void delete this.get:(this.get=b).apply(this,arguments)}}}var Va=/alpha([^)]*)/i,Wa=/opacity\s*=\s*([^)]*)/i,Xa=/^(none|table(?!-c[ea]).+)/,Ya=new RegExp(&amp;quot;^(&amp;quot;+T+&amp;quot;)(.*)$&amp;quot;,&amp;quot;i&amp;quot;),Za={position:&amp;quot;absolute&amp;quot;,visibility:&amp;quot;hidden&amp;quot;,display:&amp;quot;block&amp;quot;},$a={letterSpacing:&amp;quot;0&amp;quot;,fontWeight:&amp;quot;400&amp;quot;},_a=[&amp;quot;Webkit&amp;quot;,&amp;quot;O&amp;quot;,&amp;quot;Moz&amp;quot;,&amp;quot;ms&amp;quot;],ab=d.createElement(&amp;quot;div&amp;quot;).style;function bb(a){if(a in ab)return a;var b=a.charAt(0).toUpperCase()+a.slice(1),c=_a.length;while(c&amp;ndash;)if(a=_a[c]+b,a in ab)return a}function cb(a,b){for(var c,d,e,f=[],g=0,h=a.length;h&amp;gt;g;g++)d=a[g],d.style&amp;amp;&amp;amp;(f[g]=n._data(d,&amp;quot;olddisplay&amp;quot;),c=d.style.display,b?(f[g]||&amp;quot;none&amp;quot;!==c||(d.style.display=&amp;quot;&amp;quot;),&amp;quot;&amp;quot;===d.style.display&amp;amp;&amp;amp;W(d)&amp;amp;&amp;amp;(f[g]=n._data(d,&amp;quot;olddisplay&amp;quot;,Ma(d.nodeName)))):(e=W(d),(c&amp;amp;&amp;amp;&amp;quot;none&amp;quot;!==c||!e)&amp;amp;&amp;amp;n._data(d,&amp;quot;olddisplay&amp;quot;,e?c:n.css(d,&amp;quot;display&amp;quot;))));for(g=0;h&amp;gt;g;g++)d=a[g],d.style&amp;amp;&amp;amp;(b&amp;amp;&amp;amp;&amp;quot;none&amp;quot;!==d.style.display&amp;amp;&amp;amp;&amp;quot;&amp;quot;!==d.style.display||(d.style.display=b?f[g]||&amp;quot;&amp;quot;:&amp;quot;none&amp;quot;));return a}function db(a,b,c){var d=Ya.exec(b);return d?Math.max(0,d[1]-(c||0))+(d[2]||&amp;quot;px&amp;quot;):b}function eb(a,b,c,d,e){for(var f=c===(d?&amp;quot;border&amp;quot;:&amp;quot;content&amp;quot;)?4:&amp;quot;width&amp;quot;===b?1:0,g=0;4&amp;gt;f;f+=2)&amp;quot;margin&amp;quot;===c&amp;amp;&amp;amp;(g+=n.css(a,c+V[f],!0,e)),d?(&amp;quot;content&amp;quot;===c&amp;amp;&amp;amp;(g-=n.css(a,&amp;quot;padding&amp;quot;+V[f],!0,e)),&amp;quot;margin&amp;quot;!==c&amp;amp;&amp;amp;(g-=n.css(a,&amp;quot;border&amp;quot;+V[f]+&amp;quot;Width&amp;quot;,!0,e))):(g+=n.css(a,&amp;quot;padding&amp;quot;+V[f],!0,e),&amp;quot;padding&amp;quot;!==c&amp;amp;&amp;amp;(g+=n.css(a,&amp;quot;border&amp;quot;+V[f]+&amp;quot;Width&amp;quot;,!0,e)));return g}function fb(a,b,c){var d=!0,e=&amp;quot;width&amp;quot;===b?a.offsetWidth:a.offsetHeight,f=Ra(a),g=l.boxSizing&amp;amp;&amp;amp;&amp;quot;border-box&amp;quot;===n.css(a,&amp;quot;boxSizing&amp;quot;,!1,f);if(0&amp;gt;=e||null==e){if(e=Sa(a,b,f),(0&amp;gt;e||null==e)&amp;amp;&amp;amp;(e=a.style[b]),Oa.test(e))return e;d=g&amp;amp;&amp;amp;(l.boxSizingReliable()||e===a.style[b]),e=parseFloat(e)||0}return e+eb(a,b,c||(g?&amp;quot;border&amp;quot;:&amp;quot;content&amp;quot;),d,f)+&amp;quot;px&amp;quot;}n.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Sa(a,&amp;quot;opacity&amp;quot;);return&amp;quot;&amp;quot;===c?&amp;quot;1&amp;quot;:c}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{&amp;quot;float&amp;quot;:l.cssFloat?&amp;quot;cssFloat&amp;quot;:&amp;quot;styleFloat&amp;quot;},style:function(a,b,c,d){if(a&amp;amp;&amp;amp;3!==a.nodeType&amp;amp;&amp;amp;8!==a.nodeType&amp;amp;&amp;amp;a.style){var e,f,g,h=n.camelCase(b),i=a.style;if(b=n.cssProps[h]||(n.cssProps[h]=bb(h)||h),g=n.cssHooks[b]||n.cssHooks[h],void 0===c)return g&amp;amp;&amp;amp;&amp;quot;get&amp;quot;in g&amp;amp;&amp;amp;void 0!==(e=g.get(a,!1,d))?e:i[b];if(f=typeof c,&amp;quot;string&amp;quot;===f&amp;amp;&amp;amp;(e=U.exec(c))&amp;amp;&amp;amp;e[1]&amp;amp;&amp;amp;(c=X(a,b,e),f=&amp;quot;number&amp;quot;),null!=c&amp;amp;&amp;amp;c===c&amp;amp;&amp;amp;(&amp;quot;number&amp;quot;===f&amp;amp;&amp;amp;(c+=e&amp;amp;&amp;amp;e[3]||(n.cssNumber[h]?&amp;quot;&amp;quot;:&amp;quot;px&amp;quot;)),l.clearCloneStyle||&amp;quot;&amp;quot;!==c||0!==b.indexOf(&amp;quot;background&amp;quot;)||(i[b]=&amp;quot;inherit&amp;quot;),!(g&amp;amp;&amp;amp;&amp;quot;set&amp;quot;in g&amp;amp;&amp;amp;void 0===(c=g.set(a,c,d)))))try{i[b]=c}catch(j){}}},css:function(a,b,c,d){var e,f,g,h=n.camelCase(b);return b=n.cssProps[h]||(n.cssProps[h]=bb(h)||h),g=n.cssHooks[b]||n.cssHooks[h],g&amp;amp;&amp;amp;&amp;quot;get&amp;quot;in g&amp;amp;&amp;amp;(f=g.get(a,!0,c)),void 0===f&amp;amp;&amp;amp;(f=Sa(a,b,d)),&amp;quot;normal&amp;quot;===f&amp;amp;&amp;amp;b in $a&amp;amp;&amp;amp;(f=$a[b]),&amp;quot;&amp;quot;===c||c?(e=parseFloat(f),c===!0||isFinite(e)?e||0:f):f}}),n.each([&amp;quot;height&amp;quot;,&amp;quot;width&amp;quot;],function(a,b){n.cssHooks[b]={get:function(a,c,d){return c?Xa.test(n.css(a,&amp;quot;display&amp;quot;))&amp;amp;&amp;amp;0===a.offsetWidth?Pa(a,Za,function(){return fb(a,b,d)}):fb(a,b,d):void 0},set:function(a,c,d){var e=d&amp;amp;&amp;amp;Ra(a);return db(a,c,d?eb(a,b,d,l.boxSizing&amp;amp;&amp;amp;&amp;quot;border-box&amp;quot;===n.css(a,&amp;quot;boxSizing&amp;quot;,!1,e),e):0)}}}),l.opacity||(n.cssHooks.opacity={get:function(a,b){return Wa.test((b&amp;amp;&amp;amp;a.currentStyle?a.currentStyle.filter:a.style.filter)||&amp;quot;&amp;quot;)?.01*parseFloat(RegExp.$1)+&amp;quot;&amp;quot;:b?&amp;quot;1&amp;quot;:&amp;quot;&amp;quot;},set:function(a,b){var c=a.style,d=a.currentStyle,e=n.isNumeric(b)?&amp;quot;alpha(opacity=&amp;quot;+100*b+&amp;quot;)&amp;quot;:&amp;quot;&amp;quot;,f=d&amp;amp;&amp;amp;d.filter||c.filter||&amp;quot;&amp;quot;;c.zoom=1,(b&amp;gt;=1||&amp;quot;&amp;quot;===b)&amp;amp;&amp;amp;&amp;quot;&amp;quot;===n.trim(f.replace(Va,&amp;quot;&amp;quot;))&amp;amp;&amp;amp;c.removeAttribute&amp;amp;&amp;amp;(c.removeAttribute(&amp;quot;filter&amp;quot;),&amp;quot;&amp;quot;===b||d&amp;amp;&amp;amp;!d.filter)||(c.filter=Va.test(f)?f.replace(Va,e):f+&amp;quot; &amp;quot;+e)}}),n.cssHooks.marginRight=Ua(l.reliableMarginRight,function(a,b){return b?Pa(a,{display:&amp;quot;inline-block&amp;quot;},Sa,[a,&amp;quot;marginRight&amp;quot;]):void 0}),n.cssHooks.marginLeft=Ua(l.reliableMarginLeft,function(a,b){return b?(parseFloat(Sa(a,&amp;quot;marginLeft&amp;quot;))||(n.contains(a.ownerDocument,a)?a.getBoundingClientRect().left-Pa(a,{
marginLeft:0},function(){return a.getBoundingClientRect().left}):0))+&amp;quot;px&amp;quot;:void 0}),n.each({margin:&amp;quot;&amp;quot;,padding:&amp;quot;&amp;quot;,border:&amp;quot;Width&amp;quot;},function(a,b){n.cssHooks[a+b]={expand:function(c){for(var d=0,e={},f=&amp;quot;string&amp;quot;==typeof c?c.split(&amp;quot; &amp;quot;):[c];4&amp;gt;d;d++)e[a+V[d]+b]=f[d]||f[d-2]||f[0];return e}},Na.test(a)||(n.cssHooks[a+b].set=db)}),n.fn.extend({css:function(a,b){return Y(this,function(a,b,c){var d,e,f={},g=0;if(n.isArray(b)){for(d=Ra(a),e=b.length;e&amp;gt;g;g++)f[b[g]]=n.css(a,b[g],!1,d);return f}return void 0!==c?n.style(a,b,c):n.css(a,b)},a,b,arguments.length&amp;gt;1)},show:function(){return cb(this,!0)},hide:function(){return cb(this)},toggle:function(a){return&amp;quot;boolean&amp;quot;==typeof a?a?this.show():this.hide():this.each(function(){W(this)?n(this).show():n(this).hide()})}});function gb(a,b,c,d,e){return new gb.prototype.init(a,b,c,d,e)}n.Tween=gb,gb.prototype={constructor:gb,init:function(a,b,c,d,e,f){this.elem=a,this.prop=c,this.easing=e||n.easing._default,this.options=b,this.start=this.now=this.cur(),this.end=d,this.unit=f||(n.cssNumber[c]?&amp;quot;&amp;quot;:&amp;quot;px&amp;quot;)},cur:function(){var a=gb.propHooks[this.prop];return a&amp;amp;&amp;amp;a.get?a.get(this):gb.propHooks._default.get(this)},run:function(a){var b,c=gb.propHooks[this.prop];return this.options.duration?this.pos=b=n.easing&lt;a href="a,this.options.duration*a,0,1,this.options.duration">this.easing&lt;/a>:this.pos=b=a,this.now=(this.end-this.start)*b+this.start,this.options.step&amp;amp;&amp;amp;this.options.step.call(this.elem,this.now,this),c&amp;amp;&amp;amp;c.set?c.set(this):gb.propHooks._default.set(this),this}},gb.prototype.init.prototype=gb.prototype,gb.propHooks={_default:{get:function(a){var b;return 1!==a.elem.nodeType||null!=a.elem[a.prop]&amp;amp;&amp;amp;null==a.elem.style[a.prop]?a.elem[a.prop]:(b=n.css(a.elem,a.prop,&amp;quot;&amp;quot;),b&amp;amp;&amp;amp;&amp;quot;auto&amp;quot;!==b?b:0)},set:function(a){n.fx.step[a.prop]?n.fx.step&lt;a href="a">a.prop&lt;/a>:1!==a.elem.nodeType||null==a.elem.style[n.cssProps[a.prop]]&amp;amp;&amp;amp;!n.cssHooks[a.prop]?a.elem[a.prop]=a.now:n.style(a.elem,a.prop,a.now+a.unit)}}},gb.propHooks.scrollTop=gb.propHooks.scrollLeft={set:function(a){a.elem.nodeType&amp;amp;&amp;amp;a.elem.parentNode&amp;amp;&amp;amp;(a.elem[a.prop]=a.now)}},n.easing={linear:function(a){return a},swing:function(a){return.5-Math.cos(a*Math.PI)/2},_default:&amp;quot;swing&amp;quot;},n.fx=gb.prototype.init,n.fx.step={};var hb,ib,jb=/^(?:toggle|show|hide)$/,kb=/queueHooks$/;function lb(){return a.setTimeout(function(){hb=void 0}),hb=n.now()}function mb(a,b){var c,d={height:a},e=0;for(b=b?1:0;4&amp;gt;e;e+=2-b)c=V[e],d[&amp;quot;margin&amp;quot;+c]=d[&amp;quot;padding&amp;quot;+c]=a;return b&amp;amp;&amp;amp;(d.opacity=d.width=a),d}function nb(a,b,c){for(var d,e=(qb.tweeners[b]||[]).concat(qb.tweeners[&amp;quot;*&amp;quot;]),f=0,g=e.length;g&amp;gt;f;f++)if(d=e[f].call(c,b,a))return d}function ob(a,b,c){var d,e,f,g,h,i,j,k,m=this,o={},p=a.style,q=a.nodeType&amp;amp;&amp;amp;W(a),r=n._data(a,&amp;quot;fxshow&amp;quot;);c.queue||(h=n._queueHooks(a,&amp;quot;fx&amp;quot;),null==h.unqueued&amp;amp;&amp;amp;(h.unqueued=0,i=h.empty.fire,h.empty.fire=function(){h.unqueued||i()}),h.unqueued++,m.always(function(){m.always(function(){h.unqueued&amp;ndash;,n.queue(a,&amp;quot;fx&amp;quot;).length||h.empty.fire()})})),1===a.nodeType&amp;amp;&amp;amp;(&amp;quot;height&amp;quot;in b||&amp;quot;width&amp;quot;in b)&amp;amp;&amp;amp;(c.overflow=[p.overflow,p.overflowX,p.overflowY],j=n.css(a,&amp;quot;display&amp;quot;),k=&amp;quot;none&amp;quot;===j?n._data(a,&amp;quot;olddisplay&amp;quot;)||Ma(a.nodeName):j,&amp;quot;inline&amp;quot;===k&amp;amp;&amp;amp;&amp;quot;none&amp;quot;===n.css(a,&amp;quot;float&amp;quot;)&amp;amp;&amp;amp;(l.inlineBlockNeedsLayout&amp;amp;&amp;amp;&amp;quot;inline&amp;quot;!==Ma(a.nodeName)?p.zoom=1:p.display=&amp;quot;inline-block&amp;quot;)),c.overflow&amp;amp;&amp;amp;(p.overflow=&amp;quot;hidden&amp;quot;,l.shrinkWrapBlocks()||m.always(function(){p.overflow=c.overflow[0],p.overflowX=c.overflow[1],p.overflowY=c.overflow[2]}));for(d in b)if(e=b[d],jb.exec(e)){if(delete b[d],f=f||&amp;quot;toggle&amp;quot;===e,e===(q?&amp;quot;hide&amp;quot;:&amp;quot;show&amp;quot;)){if(&amp;quot;show&amp;quot;!==e||!r||void 0===r[d])continue;q=!0}o[d]=r&amp;amp;&amp;amp;r[d]||n.style(a,d)}else j=void 0;if(n.isEmptyObject(o))&amp;quot;inline&amp;quot;===(&amp;quot;none&amp;quot;===j?Ma(a.nodeName):j)&amp;amp;&amp;amp;(p.display=j);else{r?&amp;quot;hidden&amp;quot;in r&amp;amp;&amp;amp;(q=r.hidden):r=n._data(a,&amp;quot;fxshow&amp;quot;,{}),f&amp;amp;&amp;amp;(r.hidden=!q),q?n(a).show():m.done(function(){n(a).hide()}),m.done(function(){var b;n._removeData(a,&amp;quot;fxshow&amp;quot;);for(b in o)n.style(a,b,o[b])});for(d in o)g=nb(q?r[d]:0,d,m),d in r||(r[d]=g.start,q&amp;amp;&amp;amp;(g.end=g.start,g.start=&amp;quot;width&amp;quot;===d||&amp;quot;height&amp;quot;===d?1:0))}}function pb(a,b){var c,d,e,f,g;for(c in a)if(d=n.camelCase(c),e=b[d],f=a[c],n.isArray(f)&amp;amp;&amp;amp;(e=f[1],f=a[c]=f[0]),c!==d&amp;amp;&amp;amp;(a[d]=f,delete a[c]),g=n.cssHooks[d],g&amp;amp;&amp;amp;&amp;quot;expand&amp;quot;in g){f=g.expand(f),delete a[d];for(c in f)c in a||(a[c]=f[c],b[c]=e)}else b[d]=e}function qb(a,b,c){var d,e,f=0,g=qb.prefilters.length,h=n.Deferred().always(function(){delete i.elem}),i=function(){if(e)return!1;for(var b=hb||lb(),c=Math.max(0,j.startTime+j.duration-b),d=c/j.duration||0,f=1-d,g=0,i=j.tweens.length;i&amp;gt;g;g++)j.tweens[g].run(f);return h.notifyWith(a,[j,f,c]),1&amp;gt;f&amp;amp;&amp;amp;i?c:(h.resolveWith(a,[j]),!1)},j=h.promise({elem:a,props:n.extend({},b),opts:n.extend(!0,{specialEasing:{},easing:n.easing._default},c),originalProperties:b,originalOptions:c,startTime:hb||lb(),duration:c.duration,tweens:[],createTween:function(b,c){var d=n.Tween(a,j.opts,b,c,j.opts.specialEasing[b]||j.opts.easing);return j.tweens.push(d),d},stop:function(b){var c=0,d=b?j.tweens.length:0;if(e)return this;for(e=!0;d&amp;gt;c;c++)j.tweens[c].run(1);return b?(h.notifyWith(a,[j,1,0]),h.resolveWith(a,[j,b])):h.rejectWith(a,[j,b]),this}}),k=j.props;for(pb(k,j.opts.specialEasing);g&amp;gt;f;f++)if(d=qb.prefilters[f].call(j,a,k,j.opts))return n.isFunction(d.stop)&amp;amp;&amp;amp;(n._queueHooks(j.elem,j.opts.queue).stop=n.proxy(d.stop,d)),d;return n.map(k,nb,j),n.isFunction(j.opts.start)&amp;amp;&amp;amp;j.opts.start.call(a,j),n.fx.timer(n.extend(i,{elem:a,anim:j,queue:j.opts.queue})),j.progress(j.opts.progress).done(j.opts.done,j.opts.complete).fail(j.opts.fail).always(j.opts.always)}n.Animation=n.extend(qb,{tweeners:{&amp;quot;*&amp;quot;:[function(a,b){var c=this.createTween(a,b);return X(c.elem,a,U.exec(b),c),c}]},tweener:function(a,b){n.isFunction(a)?(b=a,a=[&amp;quot;*&amp;quot;]):a=a.match(G);for(var c,d=0,e=a.length;e&amp;gt;d;d++)c=a[d],qb.tweeners[c]=qb.tweeners[c]||[],qb.tweeners[c].unshift(b)},prefilters:[ob],prefilter:function(a,b){b?qb.prefilters.unshift(a):qb.prefilters.push(a)}}),n.speed=function(a,b,c){var d=a&amp;amp;&amp;amp;&amp;quot;object&amp;quot;==typeof a?n.extend({},a):{complete:c||!c&amp;amp;&amp;amp;b||n.isFunction(a)&amp;amp;&amp;amp;a,duration:a,easing:c&amp;amp;&amp;amp;b||b&amp;amp;&amp;amp;!n.isFunction(b)&amp;amp;&amp;amp;b};return d.duration=n.fx.off?0:&amp;quot;number&amp;quot;==typeof d.duration?d.duration:d.duration in n.fx.speeds?n.fx.speeds[d.duration]:n.fx.speeds._default,null!=d.queue&amp;amp;&amp;amp;d.queue!==!0||(d.queue=&amp;quot;fx&amp;quot;),d.old=d.complete,d.complete=function(){n.isFunction(d.old)&amp;amp;&amp;amp;d.old.call(this),d.queue&amp;amp;&amp;amp;n.dequeue(this,d.queue)},d},n.fn.extend({fadeTo:function(a,b,c,d){return this.filter(W).css(&amp;quot;opacity&amp;quot;,0).show().end().animate({opacity:b},a,c,d)},animate:function(a,b,c,d){var e=n.isEmptyObject(a),f=n.speed(b,c,d),g=function(){var b=qb(this,n.extend({},a),f);(e||n._data(this,&amp;quot;finish&amp;quot;))&amp;amp;&amp;amp;b.stop(!0)};return g.finish=g,e||f.queue===!1?this.each(g):this.queue(f.queue,g)},stop:function(a,b,c){var d=function(a){var b=a.stop;delete a.stop,b(c)};return&amp;quot;string&amp;quot;!=typeof a&amp;amp;&amp;amp;(c=b,b=a,a=void 0),b&amp;amp;&amp;amp;a!==!1&amp;amp;&amp;amp;this.queue(a||&amp;quot;fx&amp;quot;,[]),this.each(function(){var b=!0,e=null!=a&amp;amp;&amp;amp;a+&amp;quot;queueHooks&amp;quot;,f=n.timers,g=n._data(this);if(e)g[e]&amp;amp;&amp;amp;g[e].stop&amp;amp;&amp;amp;d(g[e]);else for(e in g)g[e]&amp;amp;&amp;amp;g[e].stop&amp;amp;&amp;amp;kb.test(e)&amp;amp;&amp;amp;d(g[e]);for(e=f.length;e&amp;ndash;;)f[e].elem!==this||null!=a&amp;amp;&amp;amp;f[e].queue!==a||(f[e].anim.stop(c),b=!1,f.splice(e,1));!b&amp;amp;&amp;amp;c||n.dequeue(this,a)})},finish:function(a){return a!==!1&amp;amp;&amp;amp;(a=a||&amp;quot;fx&amp;quot;),this.each(function(){var b,c=n._data(this),d=c[a+&amp;quot;queue&amp;quot;],e=c[a+&amp;quot;queueHooks&amp;quot;],f=n.timers,g=d?d.length:0;for(c.finish=!0,n.queue(this,a,[]),e&amp;amp;&amp;amp;e.stop&amp;amp;&amp;amp;e.stop.call(this,!0),b=f.length;b&amp;ndash;;)f[b].elem===this&amp;amp;&amp;amp;f[b].queue===a&amp;amp;&amp;amp;(f[b].anim.stop(!0),f.splice(b,1));for(b=0;g&amp;gt;b;b++)d[b]&amp;amp;&amp;amp;d[b].finish&amp;amp;&amp;amp;d[b].finish.call(this);delete c.finish})}}),n.each([&amp;quot;toggle&amp;quot;,&amp;quot;show&amp;quot;,&amp;quot;hide&amp;quot;],function(a,b){var c=n.fn[b];n.fn[b]=function(a,d,e){return null==a||&amp;quot;boolean&amp;quot;==typeof a?c.apply(this,arguments):this.animate(mb(b,!0),a,d,e)}}),n.each({slideDown:mb(&amp;quot;show&amp;quot;),slideUp:mb(&amp;quot;hide&amp;quot;),slideToggle:mb(&amp;quot;toggle&amp;quot;),fadeIn:{opacity:&amp;quot;show&amp;quot;},fadeOut:{opacity:&amp;quot;hide&amp;quot;},fadeToggle:{opacity:&amp;quot;toggle&amp;quot;}},function(a,b){n.fn[a]=function(a,c,d){return this.animate(b,a,c,d)}}),n.timers=[],n.fx.tick=function(){var a,b=n.timers,c=0;for(hb=n.now();c&amp;lt;b.length;c++)a=b[c],a()||b[c]!==a||b.splice(c&amp;ndash;,1);b.length||n.fx.stop(),hb=void 0},n.fx.timer=function(a){n.timers.push(a),a()?n.fx.start():n.timers.pop()},n.fx.interval=13,n.fx.start=function(){ib||(ib=a.setInterval(n.fx.tick,n.fx.interval))},n.fx.stop=function(){a.clearInterval(ib),ib=null},n.fx.speeds={slow:600,fast:200,_default:400},n.fn.delay=function(b,c){return b=n.fx?n.fx.speeds[b]||b:b,c=c||&amp;quot;fx&amp;quot;,this.queue(c,function(c,d){var e=a.setTimeout(c,b);d.stop=function(){a.clearTimeout(e)}})},function(){var a,b=d.createElement(&amp;quot;input&amp;quot;),c=d.createElement(&amp;quot;div&amp;quot;),e=d.createElement(&amp;quot;select&amp;quot;),f=e.appendChild(d.createElement(&amp;quot;option&amp;quot;));c=d.createElement(&amp;quot;div&amp;quot;),c.setAttribute(&amp;quot;className&amp;quot;,&amp;quot;t&amp;quot;),c.innerHTML=&amp;quot; &amp;lt;link/&amp;gt;&amp;lt;table&amp;gt;&amp;lt;/table&amp;gt;&amp;lt;a href='https://abraae.netlify.app/a'&amp;gt;a&amp;lt;/a&amp;gt;&amp;lt;input type='checkbox'/&amp;gt;&amp;quot;,a=c.getElementsByTagName(&amp;quot;a&amp;quot;)[0],b.setAttribute(&amp;quot;type&amp;quot;,&amp;quot;checkbox&amp;quot;),c.appendChild(b),a=c.getElementsByTagName(&amp;quot;a&amp;quot;)[0],a.style.cssText=&amp;quot;top:1px&amp;quot;,l.getSetAttribute=&amp;quot;t&amp;quot;!==c.className,l.style=/top/.test(a.getAttribute(&amp;quot;style&amp;quot;)),l.hrefNormalized=&amp;quot;/a&amp;quot;===a.getAttribute(&amp;quot;href&amp;quot;),l.checkOn=!!b.value,l.optSelected=f.selected,l.enctype=!!d.createElement(&amp;quot;form&amp;quot;).enctype,e.disabled=!0,l.optDisabled=!f.disabled,b=d.createElement(&amp;quot;input&amp;quot;),b.setAttribute(&amp;quot;value&amp;quot;,&amp;quot;&amp;quot;),l.input=&amp;quot;&amp;quot;===b.getAttribute(&amp;quot;value&amp;quot;),b.value=&amp;quot;t&amp;quot;,b.setAttribute(&amp;quot;type&amp;quot;,&amp;quot;radio&amp;quot;),l.radioValue=&amp;quot;t&amp;quot;===b.value}();var rb=/\r/g,sb=/[\x20\t\r\n\f]+/g;n.fn.extend({val:function(a){var b,c,d,e=this[0];{if(arguments.length)return d=n.isFunction(a),this.each(function(c){var e;1===this.nodeType&amp;amp;&amp;amp;(e=d?a.call(this,c,n(this).val()):a,null==e?e=&amp;quot;&amp;quot;:&amp;quot;number&amp;quot;==typeof e?e+=&amp;quot;&amp;quot;:n.isArray(e)&amp;amp;&amp;amp;(e=n.map(e,function(a){return null==a?&amp;quot;&amp;quot;:a+&amp;quot;&amp;quot;})),b=n.valHooks[this.type]||n.valHooks[this.nodeName.toLowerCase()],b&amp;amp;&amp;amp;&amp;quot;set&amp;quot;in b&amp;amp;&amp;amp;void 0!==b.set(this,e,&amp;quot;value&amp;quot;)||(this.value=e))});if(e)return b=n.valHooks[e.type]||n.valHooks[e.nodeName.toLowerCase()],b&amp;amp;&amp;amp;&amp;quot;get&amp;quot;in b&amp;amp;&amp;amp;void 0!==(c=b.get(e,&amp;quot;value&amp;quot;))?c:(c=e.value,&amp;quot;string&amp;quot;==typeof c?c.replace(rb,&amp;quot;&amp;quot;):null==c?&amp;quot;&amp;quot;:c)}}}),n.extend({valHooks:{option:{get:function(a){var b=n.find.attr(a,&amp;quot;value&amp;quot;);return null!=b?b:n.trim(n.text(a)).replace(sb,&amp;quot; &amp;quot;)}},select:{get:function(a){for(var b,c,d=a.options,e=a.selectedIndex,f=&amp;quot;select-one&amp;quot;===a.type||0&amp;gt;e,g=f?null:[],h=f?e+1:d.length,i=0&amp;gt;e?h:f?e:0;h&amp;gt;i;i++)if(c=d[i],(c.selected||i===e)&amp;amp;&amp;amp;(l.optDisabled?!c.disabled:null===c.getAttribute(&amp;quot;disabled&amp;quot;))&amp;amp;&amp;amp;(!c.parentNode.disabled||!n.nodeName(c.parentNode,&amp;quot;optgroup&amp;quot;))){if(b=n(c).val(),f)return b;g.push(b)}return g},set:function(a,b){var c,d,e=a.options,f=n.makeArray(b),g=e.length;while(g&amp;ndash;)if(d=e[g],n.inArray(n.valHooks.option.get(d),f)&amp;gt;-1)try{d.selected=c=!0}catch(h){d.scrollHeight}else d.selected=!1;return c||(a.selectedIndex=-1),e}}}}),n.each([&amp;quot;radio&amp;quot;,&amp;quot;checkbox&amp;quot;],function(){n.valHooks[this]={set:function(a,b){return n.isArray(b)?a.checked=n.inArray(n(a).val(),b)&amp;gt;-1:void 0}},l.checkOn||(n.valHooks[this].get=function(a){return null===a.getAttribute(&amp;quot;value&amp;quot;)?&amp;quot;on&amp;quot;:a.value})});var tb,ub,vb=n.expr.attrHandle,wb=/^(?:checked|selected)$/i,xb=l.getSetAttribute,yb=l.input;n.fn.extend({attr:function(a,b){return Y(this,n.attr,a,b,arguments.length&amp;gt;1)},removeAttr:function(a){return this.each(function(){n.removeAttr(this,a)})}}),n.extend({attr:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&amp;amp;&amp;amp;8!==f&amp;amp;&amp;amp;2!==f)return&amp;quot;undefined&amp;quot;==typeof a.getAttribute?n.prop(a,b,c):(1===f&amp;amp;&amp;amp;n.isXMLDoc(a)||(b=b.toLowerCase(),e=n.attrHooks[b]||(n.expr.match.bool.test(b)?ub:tb)),void 0!==c?null===c?void n.removeAttr(a,b):e&amp;amp;&amp;amp;&amp;quot;set&amp;quot;in e&amp;amp;&amp;amp;void 0!==(d=e.set(a,c,b))?d:(a.setAttribute(b,c+&amp;quot;&amp;quot;),c):e&amp;amp;&amp;amp;&amp;quot;get&amp;quot;in e&amp;amp;&amp;amp;null!==(d=e.get(a,b))?d:(d=n.find.attr(a,b),null==d?void 0:d))},attrHooks:{type:{set:function(a,b){if(!l.radioValue&amp;amp;&amp;amp;&amp;quot;radio&amp;quot;===b&amp;amp;&amp;amp;n.nodeName(a,&amp;quot;input&amp;quot;)){var c=a.value;return a.setAttribute(&amp;quot;type&amp;quot;,b),c&amp;amp;&amp;amp;(a.value=c),b}}}},removeAttr:function(a,b){var c,d,e=0,f=b&amp;amp;&amp;amp;b.match(G);if(f&amp;amp;&amp;amp;1===a.nodeType)while(c=f[e++])d=n.propFix[c]||c,n.expr.match.bool.test(c)?yb&amp;amp;&amp;amp;xb||!wb.test(c)?a[d]=!1:a[n.camelCase(&amp;quot;default-&amp;quot;+c)]=a[d]=!1:n.attr(a,c,&amp;quot;&amp;quot;),a.removeAttribute(xb?c:d)}}),ub={set:function(a,b,c){return b===!1?n.removeAttr(a,c):yb&amp;amp;&amp;amp;xb||!wb.test(c)?a.setAttribute(!xb&amp;amp;&amp;amp;n.propFix[c]||c,c):a[n.camelCase(&amp;quot;default-&amp;quot;+c)]=a[c]=!0,c}},n.each(n.expr.match.bool.source.match(/\w+/g),function(a,b){var c=vb[b]||n.find.attr;yb&amp;amp;&amp;amp;xb||!wb.test(b)?vb[b]=function(a,b,d){var e,f;return d||(f=vb[b],vb[b]=e,e=null!=c(a,b,d)?b.toLowerCase():null,vb[b]=f),e}:vb[b]=function(a,b,c){return c?void 0:a[n.camelCase(&amp;quot;default-&amp;quot;+b)]?b.toLowerCase():null}}),yb&amp;amp;&amp;amp;xb||(n.attrHooks.value={set:function(a,b,c){return n.nodeName(a,&amp;quot;input&amp;quot;)?void(a.defaultValue=b):tb&amp;amp;&amp;amp;tb.set(a,b,c)}}),xb||(tb={set:function(a,b,c){var d=a.getAttributeNode(c);return d||a.setAttributeNode(d=a.ownerDocument.createAttribute(c)),d.value=b+=&amp;quot;&amp;quot;,&amp;quot;value&amp;quot;===c||b===a.getAttribute(c)?b:void 0}},vb.id=vb.name=vb.coords=function(a,b,c){var d;return c?void 0:(d=a.getAttributeNode(b))&amp;amp;&amp;amp;&amp;quot;&amp;quot;!==d.value?d.value:null},n.valHooks.button={get:function(a,b){var c=a.getAttributeNode(b);return c&amp;amp;&amp;amp;c.specified?c.value:void 0},set:tb.set},n.attrHooks.contenteditable={set:function(a,b,c){tb.set(a,&amp;quot;&amp;quot;===b?!1:b,c)}},n.each([&amp;quot;width&amp;quot;,&amp;quot;height&amp;quot;],function(a,b){n.attrHooks[b]={set:function(a,c){return&amp;quot;&amp;quot;===c?(a.setAttribute(b,&amp;quot;auto&amp;quot;),c):void 0}}})),l.style||(n.attrHooks.style={get:function(a){return a.style.cssText||void 0},set:function(a,b){return a.style.cssText=b+&amp;quot;&amp;quot;}});var zb=/^(?:input|select|textarea|button|object)$/i,Ab=/^(?:a|area)$/i;n.fn.extend({prop:function(a,b){return Y(this,n.prop,a,b,arguments.length&amp;gt;1)},removeProp:function(a){return a=n.propFix[a]||a,this.each(function(){try{this[a]=void 0,delete this[a]}catch(b){}})}}),n.extend({prop:function(a,b,c){var d,e,f=a.nodeType;if(3!==f&amp;amp;&amp;amp;8!==f&amp;amp;&amp;amp;2!==f)return 1===f&amp;amp;&amp;amp;n.isXMLDoc(a)||(b=n.propFix[b]||b,e=n.propHooks[b]),void 0!==c?e&amp;amp;&amp;amp;&amp;quot;set&amp;quot;in e&amp;amp;&amp;amp;void 0!==(d=e.set(a,c,b))?d:a[b]=c:e&amp;amp;&amp;amp;&amp;quot;get&amp;quot;in e&amp;amp;&amp;amp;null!==(d=e.get(a,b))?d:a[b]},propHooks:{tabIndex:{get:function(a){var b=n.find.attr(a,&amp;quot;tabindex&amp;quot;);return b?parseInt(b,10):zb.test(a.nodeName)||Ab.test(a.nodeName)&amp;amp;&amp;amp;a.href?0:-1}}},propFix:{&amp;quot;for&amp;quot;:&amp;quot;htmlFor&amp;quot;,&amp;quot;class&amp;quot;:&amp;quot;className&amp;quot;}}),l.hrefNormalized||n.each([&amp;quot;href&amp;quot;,&amp;quot;src&amp;quot;],function(a,b){n.propHooks[b]={get:function(a){return a.getAttribute(b,4)}}}),l.optSelected||(n.propHooks.selected={get:function(a){var b=a.parentNode;return b&amp;amp;&amp;amp;(b.selectedIndex,b.parentNode&amp;amp;&amp;amp;b.parentNode.selectedIndex),null},set:function(a){var b=a.parentNode;b&amp;amp;&amp;amp;(b.selectedIndex,b.parentNode&amp;amp;&amp;amp;b.parentNode.selectedIndex)}}),n.each([&amp;quot;tabIndex&amp;quot;,&amp;quot;readOnly&amp;quot;,&amp;quot;maxLength&amp;quot;,&amp;quot;cellSpacing&amp;quot;,&amp;quot;cellPadding&amp;quot;,&amp;quot;rowSpan&amp;quot;,&amp;quot;colSpan&amp;quot;,&amp;quot;useMap&amp;quot;,&amp;quot;frameBorder&amp;quot;,&amp;quot;contentEditable&amp;quot;],function(){n.propFix[this.toLowerCase()]=this}),l.enctype||(n.propFix.enctype=&amp;quot;encoding&amp;quot;);var Bb=/[\t\r\n\f]/g;function Cb(a){return n.attr(a,&amp;quot;class&amp;quot;)||&amp;quot;&amp;quot;}n.fn.extend({addClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).addClass(a.call(this,b,Cb(this)))});if(&amp;quot;string&amp;quot;==typeof a&amp;amp;&amp;amp;a){b=a.match(G)||[];while(c=this[i++])if(e=Cb(c),d=1===c.nodeType&amp;amp;&amp;amp;(&amp;quot; &amp;quot;+e+&amp;quot; &amp;quot;).replace(Bb,&amp;quot; &amp;quot;)){g=0;while(f=b[g++])d.indexOf(&amp;quot; &amp;quot;+f+&amp;quot; &amp;quot;)&amp;lt;0&amp;amp;&amp;amp;(d+=f+&amp;quot; &amp;quot;);h=n.trim(d),e!==h&amp;amp;&amp;amp;n.attr(c,&amp;quot;class&amp;quot;,h)}}return this},removeClass:function(a){var b,c,d,e,f,g,h,i=0;if(n.isFunction(a))return this.each(function(b){n(this).removeClass(a.call(this,b,Cb(this)))});if(!arguments.length)return this.attr(&amp;quot;class&amp;quot;,&amp;quot;&amp;quot;);if(&amp;quot;string&amp;quot;==typeof a&amp;amp;&amp;amp;a){b=a.match(G)||[];while(c=this[i++])if(e=Cb(c),d=1===c.nodeType&amp;amp;&amp;amp;(&amp;quot; &amp;quot;+e+&amp;quot; &amp;quot;).replace(Bb,&amp;quot; &amp;quot;)){g=0;while(f=b[g++])while(d.indexOf(&amp;quot; &amp;quot;+f+&amp;quot; &amp;quot;)&amp;gt;-1)d=d.replace(&amp;quot; &amp;quot;+f+&amp;quot; &amp;quot;,&amp;quot; &amp;quot;);h=n.trim(d),e!==h&amp;amp;&amp;amp;n.attr(c,&amp;quot;class&amp;quot;,h)}}return this},toggleClass:function(a,b){var c=typeof a;return&amp;quot;boolean&amp;quot;==typeof b&amp;amp;&amp;amp;&amp;quot;string&amp;quot;===c?b?this.addClass(a):this.removeClass(a):n.isFunction(a)?this.each(function(c){n(this).toggleClass(a.call(this,c,Cb(this),b),b)}):this.each(function(){var b,d,e,f;if(&amp;quot;string&amp;quot;===c){d=0,e=n(this),f=a.match(G)||[];while(b=f[d++])e.hasClass(b)?e.removeClass(b):e.addClass(b)}else void 0!==a&amp;amp;&amp;amp;&amp;quot;boolean&amp;quot;!==c||(b=Cb(this),b&amp;amp;&amp;amp;n._data(this,&amp;quot;__className__&amp;quot;,b),n.attr(this,&amp;quot;class&amp;quot;,b||a===!1?&amp;quot;&amp;quot;:n._data(this,&amp;quot;__className__&amp;quot;)||&amp;quot;&amp;quot;))})},hasClass:function(a){var b,c,d=0;b=&amp;quot; &amp;quot;+a+&amp;quot; &amp;quot;;while(c=this[d++])if(1===c.nodeType&amp;amp;&amp;amp;(&amp;quot; &amp;quot;+Cb(c)+&amp;quot; &amp;quot;).replace(Bb,&amp;quot; &amp;quot;).indexOf(b)&amp;gt;-1)return!0;return!1}}),n.each(&amp;quot;blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error contextmenu&amp;quot;.split(&amp;quot; &amp;quot;),function(a,b){n.fn[b]=function(a,c){return arguments.length&amp;gt;0?this.on(b,null,a,c):this.trigger(b)}}),n.fn.extend({hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var Db=a.location,Eb=n.now(),Fb=/?/,Gb=/(,)|([|{)|(}|])|&amp;quot;(?:[^&amp;quot;\\r\n]|\[&amp;quot;\/bfnrt]|\u[\da-fA-F]{4})*&amp;quot;\s*:?|true|false|null|-?(?!0\d)\d+(?:.\d+|)(?:[eE][+-]?\d+|)/g;n.parseJSON=function(b){if(a.JSON&amp;amp;&amp;amp;a.JSON.parse)return a.JSON.parse(b+&amp;quot;&amp;quot;);var c,d=null,e=n.trim(b+&amp;quot;&amp;quot;);return e&amp;amp;&amp;amp;!n.trim(e.replace(Gb,function(a,b,e,f){return c&amp;amp;&amp;amp;b&amp;amp;&amp;amp;(d=0),0===d?a:(c=e||b,d+=!f-!e,&amp;quot;&amp;quot;)}))?Function(&amp;quot;return &amp;quot;+e)():n.error(&amp;quot;Invalid JSON: &amp;quot;+b)},n.parseXML=function(b){var c,d;if(!b||&amp;quot;string&amp;quot;!=typeof b)return null;try{a.DOMParser?(d=new a.DOMParser,c=d.parseFromString(b,&amp;quot;text/xml&amp;quot;)):(c=new a.ActiveXObject(&amp;quot;Microsoft.XMLDOM&amp;quot;),c.async=&amp;quot;false&amp;quot;,c.loadXML(b))}catch(e){c=void 0}return c&amp;amp;&amp;amp;c.documentElement&amp;amp;&amp;amp;!c.getElementsByTagName(&amp;quot;parsererror&amp;quot;).length||n.error(&amp;quot;Invalid XML: &amp;quot;+b),c};var Hb=/#.*$/,Ib=/([?&amp;amp;])_=[^&amp;amp;]*/,Jb=/^(.*?):[ \t]*([^\r\n]*)\r?$/gm,Kb=/^(?:about|app|app-storage|.+-extension|file|res|widget):$/,Lb=/^(?:GET|HEAD)$/,Mb=/^///,Nb=/^([\w.+-]+:)(?://(?:[^/?#]*@|)([^/?#:]*)(?::(\d+)|)|)/,Ob={},Pb={},Qb=&amp;quot;*/&amp;quot;.concat(&amp;quot;*&amp;quot;),Rb=Db.href,Sb=Nb.exec(Rb.toLowerCase())||[];function Tb(a){return function(b,c){&amp;quot;string&amp;quot;!=typeof b&amp;amp;&amp;amp;(c=b,b=&amp;quot;*&amp;quot;);var d,e=0,f=b.toLowerCase().match(G)||[];if(n.isFunction(c))while(d=f[e++])&amp;quot;+&amp;quot;===d.charAt(0)?(d=d.slice(1)||&amp;quot;*&amp;quot;,(a[d]=a[d]||[]).unshift(c)):(a[d]=a[d]||[]).push(c)}}function Ub(a,b,c,d){var e={},f=a===Pb;function g(h){var i;return e[h]=!0,n.each(a[h]||[],function(a,h){var j=h(b,c,d);return&amp;quot;string&amp;quot;!=typeof j||f||e[j]?f?!(i=j):void 0:(b.dataTypes.unshift(j),g(j),!1)}),i}return g(b.dataTypes[0])||!e[&amp;quot;*&amp;quot;]&amp;amp;&amp;amp;g(&amp;quot;*&amp;quot;)}function Vb(a,b){var c,d,e=n.ajaxSettings.flatOptions||{};for(d in b)void 0!==b[d]&amp;amp;&amp;amp;((e[d]?a:c||(c={}))[d]=b[d]);return c&amp;amp;&amp;amp;n.extend(!0,a,c),a}function Wb(a,b,c){var d,e,f,g,h=a.contents,i=a.dataTypes;while(&amp;quot;*&amp;quot;===i[0])i.shift(),void 0===e&amp;amp;&amp;amp;(e=a.mimeType||b.getResponseHeader(&amp;quot;Content-Type&amp;quot;));if(e)for(g in h)if(h[g]&amp;amp;&amp;amp;h[g].test(e)){i.unshift(g);break}if(i[0]in c)f=i[0];else{for(g in c){if(!i[0]||a.converters[g+&amp;quot; &amp;quot;+i[0]]){f=g;break}d||(d=g)}f=f||d}return f?(f!==i[0]&amp;amp;&amp;amp;i.unshift(f),c[f]):void 0}function Xb(a,b,c,d){var e,f,g,h,i,j={},k=a.dataTypes.slice();if(k[1])for(g in a.converters)j[g.toLowerCase()]=a.converters[g];f=k.shift();while(f)if(a.responseFields[f]&amp;amp;&amp;amp;(c[a.responseFields[f]]=b),!i&amp;amp;&amp;amp;d&amp;amp;&amp;amp;a.dataFilter&amp;amp;&amp;amp;(b=a.dataFilter(b,a.dataType)),i=f,f=k.shift())if(&amp;quot;*&amp;quot;===f)f=i;else if(&amp;quot;*&amp;quot;!==i&amp;amp;&amp;amp;i!==f){if(g=j[i+&amp;quot; &amp;quot;+f]||j[&amp;quot;* &amp;quot;+f],!g)for(e in j)if(h=e.split(&amp;quot; &amp;quot;),h[1]===f&amp;amp;&amp;amp;(g=j[i+&amp;quot; &amp;quot;+h[0]]||j[&amp;quot;* &amp;quot;+h[0]])){g===!0?g=j[e]:j[e]!==!0&amp;amp;&amp;amp;(f=h[0],k.unshift(h[1]));break}if(g!==!0)if(g&amp;amp;&amp;amp;a[&amp;quot;throws&amp;quot;])b=g(b);else try{b=g(b)}catch(l){return{state:&amp;quot;parsererror&amp;quot;,error:g?l:&amp;quot;No conversion from &amp;quot;+i+&amp;quot; to &amp;quot;+f}}}return{state:&amp;quot;success&amp;quot;,data:b}}n.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:Rb,type:&amp;quot;GET&amp;quot;,isLocal:Kb.test(Sb[1]),global:!0,processData:!0,async:!0,contentType:&amp;quot;application/x-www-form-urlencoded; charset=UTF-8&amp;quot;,accepts:{&amp;quot;*&amp;quot;:Qb,text:&amp;quot;text/plain&amp;quot;,html:&amp;quot;text/html&amp;quot;,xml:&amp;quot;application/xml, text/xml&amp;quot;,json:&amp;quot;application/json, text/javascript&amp;quot;},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:&amp;quot;responseXML&amp;quot;,text:&amp;quot;responseText&amp;quot;,json:&amp;quot;responseJSON&amp;quot;},converters:{&amp;quot;* text&amp;quot;:String,&amp;quot;text html&amp;quot;:!0,&amp;quot;text json&amp;quot;:n.parseJSON,&amp;quot;text xml&amp;quot;:n.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(a,b){return b?Vb(Vb(a,n.ajaxSettings),b):Vb(n.ajaxSettings,a)},ajaxPrefilter:Tb(Ob),ajaxTransport:Tb(Pb),ajax:function(b,c){&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;(c=b,b=void 0),c=c||{};var d,e,f,g,h,i,j,k,l=n.ajaxSetup({},c),m=l.context||l,o=l.context&amp;amp;&amp;amp;(m.nodeType||m.jquery)?n(m):n.event,p=n.Deferred(),q=n.Callbacks(&amp;quot;once memory&amp;quot;),r=l.statusCode||{},s={},t={},u=0,v=&amp;quot;canceled&amp;quot;,w={readyState:0,getResponseHeader:function(a){var b;if(2===u){if(!k){k={};while(b=Jb.exec(g))k[b[1].toLowerCase()]=b[2]}b=k[a.toLowerCase()]}return null==b?null:b},getAllResponseHeaders:function(){return 2===u?g:null},setRequestHeader:function(a,b){var c=a.toLowerCase();return u||(a=t[c]=t[c]||a,s[a]=b),this},overrideMimeType:function(a){return u||(l.mimeType=a),this},statusCode:function(a){var b;if(a)if(2&amp;gt;u)for(b in a)r[b]=[r[b],a[b]];else w.always(a[w.status]);return this},abort:function(a){var b=a||v;return j&amp;amp;&amp;amp;j.abort(b),y(0,b),this}};if(p.promise(w).complete=q.add,w.success=w.done,w.error=w.fail,l.url=((b||l.url||Rb)+&amp;quot;&amp;quot;).replace(Hb,&amp;quot;&amp;quot;).replace(Mb,Sb[1]+&amp;quot;//&amp;quot;),l.type=c.method||c.type||l.method||l.type,l.dataTypes=n.trim(l.dataType||&amp;quot;*&amp;quot;).toLowerCase().match(G)||[&amp;quot;&amp;quot;],null==l.crossDomain&amp;amp;&amp;amp;(d=Nb.exec(l.url.toLowerCase()),l.crossDomain=!(!d||d[1]===Sb[1]&amp;amp;&amp;amp;d[2]===Sb[2]&amp;amp;&amp;amp;(d[3]||(&amp;quot;http:&amp;quot;===d[1]?&amp;quot;80&amp;quot;:&amp;quot;443&amp;quot;))===(Sb[3]||(&amp;quot;http:&amp;quot;===Sb[1]?&amp;quot;80&amp;quot;:&amp;quot;443&amp;quot;)))),l.data&amp;amp;&amp;amp;l.processData&amp;amp;&amp;amp;&amp;quot;string&amp;quot;!=typeof l.data&amp;amp;&amp;amp;(l.data=n.param(l.data,l.traditional)),Ub(Ob,l,c,w),2===u)return w;i=n.event&amp;amp;&amp;amp;l.global,i&amp;amp;&amp;amp;0===n.active++&amp;amp;&amp;amp;n.event.trigger(&amp;quot;ajaxStart&amp;quot;),l.type=l.type.toUpperCase(),l.hasContent=!Lb.test(l.type),f=l.url,l.hasContent||(l.data&amp;amp;&amp;amp;(f=l.url+=(Fb.test(f)?&amp;quot;&amp;amp;&amp;quot;:&amp;quot;?&amp;quot;)+l.data,delete l.data),l.cache===!1&amp;amp;&amp;amp;(l.url=Ib.test(f)?f.replace(Ib,&amp;quot;$1_=&amp;quot;+Eb++):f+(Fb.test(f)?&amp;quot;&amp;amp;&amp;quot;:&amp;quot;?&amp;quot;)+&amp;quot;_=&amp;quot;+Eb++)),l.ifModified&amp;amp;&amp;amp;(n.lastModified[f]&amp;amp;&amp;amp;w.setRequestHeader(&amp;quot;If-Modified-Since&amp;quot;,n.lastModified[f]),n.etag[f]&amp;amp;&amp;amp;w.setRequestHeader(&amp;quot;If-None-Match&amp;quot;,n.etag[f])),(l.data&amp;amp;&amp;amp;l.hasContent&amp;amp;&amp;amp;l.contentType!==!1||c.contentType)&amp;amp;&amp;amp;w.setRequestHeader(&amp;quot;Content-Type&amp;quot;,l.contentType),w.setRequestHeader(&amp;quot;Accept&amp;quot;,l.dataTypes[0]&amp;amp;&amp;amp;l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(&amp;quot;*&amp;quot;!==l.dataTypes[0]?&amp;quot;, &amp;quot;+Qb+&amp;quot;; q=0.01&amp;quot;:&amp;quot;&amp;quot;):l.accepts[&amp;quot;*&amp;quot;]);for(e in l.headers)w.setRequestHeader(e,l.headers[e]);if(l.beforeSend&amp;amp;&amp;amp;(l.beforeSend.call(m,w,l)===!1||2===u))return w.abort();v=&amp;quot;abort&amp;quot;;for(e in{success:1,error:1,complete:1})w&lt;a href="l[e]">e&lt;/a>;if(j=Ub(Pb,l,c,w)){if(w.readyState=1,i&amp;amp;&amp;amp;o.trigger(&amp;quot;ajaxSend&amp;quot;,[w,l]),2===u)return w;l.async&amp;amp;&amp;amp;l.timeout&amp;gt;0&amp;amp;&amp;amp;(h=a.setTimeout(function(){w.abort(&amp;quot;timeout&amp;quot;)},l.timeout));try{u=1,j.send(s,y)}catch(x){if(!(2&amp;gt;u))throw x;y(-1,x)}}else y(-1,&amp;quot;No Transport&amp;quot;);function y(b,c,d,e){var k,s,t,v,x,y=c;2!==u&amp;amp;&amp;amp;(u=2,h&amp;amp;&amp;amp;a.clearTimeout(h),j=void 0,g=e||&amp;quot;&amp;quot;,w.readyState=b&amp;gt;0?4:0,k=b&amp;gt;=200&amp;amp;&amp;amp;300&amp;gt;b||304===b,d&amp;amp;&amp;amp;(v=Wb(l,w,d)),v=Xb(l,v,w,k),k?(l.ifModified&amp;amp;&amp;amp;(x=w.getResponseHeader(&amp;quot;Last-Modified&amp;quot;),x&amp;amp;&amp;amp;(n.lastModified[f]=x),x=w.getResponseHeader(&amp;quot;etag&amp;quot;),x&amp;amp;&amp;amp;(n.etag[f]=x)),204===b||&amp;quot;HEAD&amp;quot;===l.type?y=&amp;quot;nocontent&amp;quot;:304===b?y=&amp;quot;notmodified&amp;quot;:(y=v.state,s=v.data,t=v.error,k=!t)):(t=y,!b&amp;amp;&amp;amp;y||(y=&amp;quot;error&amp;quot;,0&amp;gt;b&amp;amp;&amp;amp;(b=0))),w.status=b,w.statusText=(c||y)+&amp;quot;&amp;quot;,k?p.resolveWith(m,[s,y,w]):p.rejectWith(m,[w,y,t]),w.statusCode(r),r=void 0,i&amp;amp;&amp;amp;o.trigger(k?&amp;quot;ajaxSuccess&amp;quot;:&amp;quot;ajaxError&amp;quot;,[w,l,k?s:t]),q.fireWith(m,[w,y]),i&amp;amp;&amp;amp;(o.trigger(&amp;quot;ajaxComplete&amp;quot;,[w,l]),&amp;ndash;n.active||n.event.trigger(&amp;quot;ajaxStop&amp;quot;)))}return w},getJSON:function(a,b,c){return n.get(a,b,c,&amp;quot;json&amp;quot;)},getScript:function(a,b){return n.get(a,void 0,b,&amp;quot;script&amp;quot;)}}),n.each([&amp;quot;get&amp;quot;,&amp;quot;post&amp;quot;],function(a,b){n[b]=function(a,c,d,e){return n.isFunction(c)&amp;amp;&amp;amp;(e=e||d,d=c,c=void 0),n.ajax(n.extend({url:a,type:b,dataType:e,data:c,success:d},n.isPlainObject(a)&amp;amp;&amp;amp;a))}}),n._evalUrl=function(a){return n.ajax({url:a,type:&amp;quot;GET&amp;quot;,dataType:&amp;quot;script&amp;quot;,cache:!0,async:!1,global:!1,&amp;quot;throws&amp;quot;:!0})},n.fn.extend({wrapAll:function(a){if(n.isFunction(a))return this.each(function(b){n(this).wrapAll(a.call(this,b))});if(this[0]){var b=n(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&amp;amp;&amp;amp;b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&amp;amp;&amp;amp;1===a.firstChild.nodeType)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return n.isFunction(a)?this.each(function(b){n(this).wrapInner(a.call(this,b))}):this.each(function(){var b=n(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=n.isFunction(a);return this.each(function(c){n(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){n.nodeName(this,&amp;quot;body&amp;quot;)||n(this).replaceWith(this.childNodes)}).end()}});function Yb(a){return a.style&amp;amp;&amp;amp;a.style.display||n.css(a,&amp;quot;display&amp;quot;)}function Zb(a){if(!n.contains(a.ownerDocument||d,a))return!0;while(a&amp;amp;&amp;amp;1===a.nodeType){if(&amp;quot;none&amp;quot;===Yb(a)||&amp;quot;hidden&amp;quot;===a.type)return!0;a=a.parentNode}return!1}n.expr.filters.hidden=function(a){return l.reliableHiddenOffsets()?a.offsetWidth&amp;lt;=0&amp;amp;&amp;amp;a.offsetHeight&amp;lt;=0&amp;amp;&amp;amp;!a.getClientRects().length:Zb(a)},n.expr.filters.visible=function(a){return!n.expr.filters.hidden(a)};var $b=/%20/g,_b=/[]$/,ac=/\r?\n/g,bc=/^(?:submit|button|image|reset|file)$/i,cc=/^(?:input|select|textarea|keygen)/i;function dc(a,b,c,d){var e;if(n.isArray(b))n.each(b,function(b,e){c||_b.test(a)?d(a,e):dc(a+&amp;quot;[&amp;quot;+(&amp;quot;object&amp;quot;==typeof e&amp;amp;&amp;amp;null!=e?b:&amp;quot;&amp;quot;)+&amp;quot;]&amp;quot;,e,c,d)});else if(c||&amp;quot;object&amp;quot;!==n.type(b))d(a,b);else for(e in b)dc(a+&amp;quot;[&amp;quot;+e+&amp;quot;]&amp;quot;,b[e],c,d)}n.param=function(a,b){var c,d=[],e=function(a,b){b=n.isFunction(b)?b():null==b?&amp;quot;&amp;quot;:b,d[d.length]=encodeURIComponent(a)+&amp;quot;=&amp;quot;+encodeURIComponent(b)};if(void 0===b&amp;amp;&amp;amp;(b=n.ajaxSettings&amp;amp;&amp;amp;n.ajaxSettings.traditional),n.isArray(a)||a.jquery&amp;amp;&amp;amp;!n.isPlainObject(a))n.each(a,function(){e(this.name,this.value)});else for(c in a)dc(c,a[c],b,e);return d.join(&amp;quot;&amp;amp;&amp;quot;).replace($b,&amp;quot;+&amp;quot;)},n.fn.extend({serialize:function(){return n.param(this.serializeArray())},serializeArray:function(){return this.map(function(){var a=n.prop(this,&amp;quot;elements&amp;quot;);return a?n.makeArray(a):this}).filter(function(){var a=this.type;return this.name&amp;amp;&amp;amp;!n(this).is(&amp;quot;:disabled&amp;quot;)&amp;amp;&amp;amp;cc.test(this.nodeName)&amp;amp;&amp;amp;!bc.test(a)&amp;amp;&amp;amp;(this.checked||!Z.test(a))}).map(function(a,b){var c=n(this).val();return null==c?null:n.isArray(c)?n.map(c,function(a){return{name:b.name,value:a.replace(ac,&amp;quot;\r\n&amp;quot;)}}):{name:b.name,value:c.replace(ac,&amp;quot;\r\n&amp;quot;)}}).get()}}),n.ajaxSettings.xhr=void 0!==a.ActiveXObject?function(){return this.isLocal?ic():d.documentMode&amp;gt;8?hc():/^(get|post|head|put|delete|options)$/i.test(this.type)&amp;amp;&amp;amp;hc()||ic()}:hc;var ec=0,fc={},gc=n.ajaxSettings.xhr();a.attachEvent&amp;amp;&amp;amp;a.attachEvent(&amp;quot;onunload&amp;quot;,function(){for(var a in fc)fc[a](void 0,!0)}),l.cors=!!gc&amp;amp;&amp;amp;&amp;quot;withCredentials&amp;quot;in gc,gc=l.ajax=!!gc,gc&amp;amp;&amp;amp;n.ajaxTransport(function(b){if(!b.crossDomain||l.cors){var c;return{send:function(d,e){var f,g=b.xhr(),h=++ec;if(g.open(b.type,b.url,b.async,b.username,b.password),b.xhrFields)for(f in b.xhrFields)g[f]=b.xhrFields[f];b.mimeType&amp;amp;&amp;amp;g.overrideMimeType&amp;amp;&amp;amp;g.overrideMimeType(b.mimeType),b.crossDomain||d[&amp;quot;X-Requested-With&amp;quot;]||(d[&amp;quot;X-Requested-With&amp;quot;]=&amp;quot;XMLHttpRequest&amp;quot;);for(f in d)void 0!==d[f]&amp;amp;&amp;amp;g.setRequestHeader(f,d[f]+&amp;quot;&amp;quot;);g.send(b.hasContent&amp;amp;&amp;amp;b.data||null),c=function(a,d){var f,i,j;if(c&amp;amp;&amp;amp;(d||4===g.readyState))if(delete fc[h],c=void 0,g.onreadystatechange=n.noop,d)4!==g.readyState&amp;amp;&amp;amp;g.abort();else{j={},f=g.status,&amp;quot;string&amp;quot;==typeof g.responseText&amp;amp;&amp;amp;(j.text=g.responseText);try{i=g.statusText}catch(k){i=&amp;quot;&amp;quot;}f||!b.isLocal||b.crossDomain?1223===f&amp;amp;&amp;amp;(f=204):f=j.text?200:404}j&amp;amp;&amp;amp;e(f,i,j,g.getAllResponseHeaders())},b.async?4===g.readyState?a.setTimeout(c):g.onreadystatechange=fc[h]=c:c()},abort:function(){c&amp;amp;&amp;amp;c(void 0,!0)}}}});function hc(){try{return new a.XMLHttpRequest}catch(b){}}function ic(){try{return new a.ActiveXObject(&amp;quot;Microsoft.XMLHTTP&amp;quot;)}catch(b){}}n.ajaxSetup({accepts:{script:&amp;quot;text/javascript, application/javascript, application/ecmascript, application/x-ecmascript&amp;quot;},contents:{script:/\b(?:java|ecma)script\b/},converters:{&amp;quot;text script&amp;quot;:function(a){return n.globalEval(a),a}}}),n.ajaxPrefilter(&amp;quot;script&amp;quot;,function(a){void 0===a.cache&amp;amp;&amp;amp;(a.cache=!1),a.crossDomain&amp;amp;&amp;amp;(a.type=&amp;quot;GET&amp;quot;,a.global=!1)}),n.ajaxTransport(&amp;quot;script&amp;quot;,function(a){if(a.crossDomain){var b,c=d.head||n(&amp;quot;head&amp;quot;)[0]||d.documentElement;return{send:function(e,f){b=d.createElement(&amp;quot;script&amp;quot;),b.async=!0,a.scriptCharset&amp;amp;&amp;amp;(b.charset=a.scriptCharset),b.src=a.url,b.onload=b.onreadystatechange=function(a,c){(c||!b.readyState||/loaded|complete/.test(b.readyState))&amp;amp;&amp;amp;(b.onload=b.onreadystatechange=null,b.parentNode&amp;amp;&amp;amp;b.parentNode.removeChild(b),b=null,c||f(200,&amp;quot;success&amp;quot;))},c.insertBefore(b,c.firstChild)},abort:function(){b&amp;amp;&amp;amp;b.onload(void 0,!0)}}}});var jc=[],kc=/(=)?(?=&amp;amp;|$)|??/;n.ajaxSetup({jsonp:&amp;quot;callback&amp;quot;,jsonpCallback:function(){var a=jc.pop()||n.expando+&amp;quot;_&amp;quot;+Eb++;return this[a]=!0,a}}),n.ajaxPrefilter(&amp;quot;json jsonp&amp;quot;,function(b,c,d){var e,f,g,h=b.jsonp!==!1&amp;amp;&amp;amp;(kc.test(b.url)?&amp;quot;url&amp;quot;:&amp;quot;string&amp;quot;==typeof b.data&amp;amp;&amp;amp;0===(b.contentType||&amp;quot;&amp;quot;).indexOf(&amp;quot;application/x-www-form-urlencoded&amp;quot;)&amp;amp;&amp;amp;kc.test(b.data)&amp;amp;&amp;amp;&amp;quot;data&amp;quot;);return h||&amp;quot;jsonp&amp;quot;===b.dataTypes[0]?(e=b.jsonpCallback=n.isFunction(b.jsonpCallback)?b.jsonpCallback():b.jsonpCallback,h?b[h]=b[h].replace(kc,&amp;quot;$1&amp;quot;+e):b.jsonp!==!1&amp;amp;&amp;amp;(b.url+=(Fb.test(b.url)?&amp;quot;&amp;amp;&amp;quot;:&amp;quot;?&amp;quot;)+b.jsonp+&amp;quot;=&amp;quot;+e),b.converters[&amp;quot;script json&amp;quot;]=function(){return g||n.error(e+&amp;quot; was not called&amp;quot;),g[0]},b.dataTypes[0]=&amp;quot;json&amp;quot;,f=a[e],a[e]=function(){g=arguments},d.always(function(){void 0===f?n(a).removeProp(e):a[e]=f,b[e]&amp;amp;&amp;amp;(b.jsonpCallback=c.jsonpCallback,jc.push(e)),g&amp;amp;&amp;amp;n.isFunction(f)&amp;amp;&amp;amp;f(g[0]),g=f=void 0}),&amp;quot;script&amp;quot;):void 0}),n.parseHTML=function(a,b,c){if(!a||&amp;quot;string&amp;quot;!=typeof a)return null;&amp;quot;boolean&amp;quot;==typeof b&amp;amp;&amp;amp;(c=b,b=!1),b=b||d;var e=x.exec(a),f=!c&amp;amp;&amp;amp;[];return e?[b.createElement(e[1])]:(e=ja([a],b,f),f&amp;amp;&amp;amp;f.length&amp;amp;&amp;amp;n(f).remove(),n.merge([],e.childNodes))};var lc=n.fn.load;n.fn.load=function(a,b,c){if(&amp;quot;string&amp;quot;!=typeof a&amp;amp;&amp;amp;lc)return lc.apply(this,arguments);var d,e,f,g=this,h=a.indexOf(&amp;quot; &amp;quot;);return h&amp;gt;-1&amp;amp;&amp;amp;(d=n.trim(a.slice(h,a.length)),a=a.slice(0,h)),n.isFunction(b)?(c=b,b=void 0):b&amp;amp;&amp;amp;&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;(e=&amp;quot;POST&amp;quot;),g.length&amp;gt;0&amp;amp;&amp;amp;n.ajax({url:a,type:e||&amp;quot;GET&amp;quot;,dataType:&amp;quot;html&amp;quot;,data:b}).done(function(a){f=arguments,g.html(d?n(&amp;quot;&amp;lt;div&amp;gt;&amp;quot;).append(n.parseHTML(a)).find(d):a)}).always(c&amp;amp;&amp;amp;function(a,b){g.each(function(){c.apply(this,f||[a.responseText,b,a])})}),this},n.each([&amp;quot;ajaxStart&amp;quot;,&amp;quot;ajaxStop&amp;quot;,&amp;quot;ajaxComplete&amp;quot;,&amp;quot;ajaxError&amp;quot;,&amp;quot;ajaxSuccess&amp;quot;,&amp;quot;ajaxSend&amp;quot;],function(a,b){n.fn[b]=function(a){return this.on(b,a)}}),n.expr.filters.animated=function(a){return n.grep(n.timers,function(b){return a===b.elem}).length};function mc(a){return n.isWindow(a)?a:9===a.nodeType?a.defaultView||a.parentWindow:!1}n.offset={setOffset:function(a,b,c){var d,e,f,g,h,i,j,k=n.css(a,&amp;quot;position&amp;quot;),l=n(a),m={};&amp;quot;static&amp;quot;===k&amp;amp;&amp;amp;(a.style.position=&amp;quot;relative&amp;quot;),h=l.offset(),f=n.css(a,&amp;quot;top&amp;quot;),i=n.css(a,&amp;quot;left&amp;quot;),j=(&amp;quot;absolute&amp;quot;===k||&amp;quot;fixed&amp;quot;===k)&amp;amp;&amp;amp;n.inArray(&amp;quot;auto&amp;quot;,[f,i])&amp;gt;-1,j?(d=l.position(),g=d.top,e=d.left):(g=parseFloat(f)||0,e=parseFloat(i)||0),n.isFunction(b)&amp;amp;&amp;amp;(b=b.call(a,c,n.extend({},h))),null!=b.top&amp;amp;&amp;amp;(m.top=b.top-h.top+g),null!=b.left&amp;amp;&amp;amp;(m.left=b.left-h.left+e),&amp;quot;using&amp;quot;in b?b.using.call(a,m):l.css(m)}},n.fn.extend({offset:function(a){if(arguments.length)return void 0===a?this:this.each(function(b){n.offset.setOffset(this,a,b)});var b,c,d={top:0,left:0},e=this[0],f=e&amp;amp;&amp;amp;e.ownerDocument;if(f)return b=f.documentElement,n.contains(b,e)?(&amp;quot;undefined&amp;quot;!=typeof e.getBoundingClientRect&amp;amp;&amp;amp;(d=e.getBoundingClientRect()),c=mc(f),{top:d.top+(c.pageYOffset||b.scrollTop)-(b.clientTop||0),left:d.left+(c.pageXOffset||b.scrollLeft)-(b.clientLeft||0)}):d},position:function(){if(this[0]){var a,b,c={top:0,left:0},d=this[0];return&amp;quot;fixed&amp;quot;===n.css(d,&amp;quot;position&amp;quot;)?b=d.getBoundingClientRect():(a=this.offsetParent(),b=this.offset(),n.nodeName(a[0],&amp;quot;html&amp;quot;)||(c=a.offset()),c.top+=n.css(a[0],&amp;quot;borderTopWidth&amp;quot;,!0),c.left+=n.css(a[0],&amp;quot;borderLeftWidth&amp;quot;,!0)),{top:b.top-c.top-n.css(d,&amp;quot;marginTop&amp;quot;,!0),left:b.left-c.left-n.css(d,&amp;quot;marginLeft&amp;quot;,!0)}}},offsetParent:function(){return this.map(function(){var a=this.offsetParent;while(a&amp;amp;&amp;amp;!n.nodeName(a,&amp;quot;html&amp;quot;)&amp;amp;&amp;amp;&amp;quot;static&amp;quot;===n.css(a,&amp;quot;position&amp;quot;))a=a.offsetParent;return a||Qa})}}),n.each({scrollLeft:&amp;quot;pageXOffset&amp;quot;,scrollTop:&amp;quot;pageYOffset&amp;quot;},function(a,b){var c=/Y/.test(b);n.fn[a]=function(d){return Y(this,function(a,d,e){var f=mc(a);return void 0===e?f?b in f?f[b]:f.document.documentElement[d]:a[d]:void(f?f.scrollTo(c?n(f).scrollLeft():e,c?e:n(f).scrollTop()):a[d]=e)},a,d,arguments.length,null)}}),n.each([&amp;quot;top&amp;quot;,&amp;quot;left&amp;quot;],function(a,b){n.cssHooks[b]=Ua(l.pixelPosition,function(a,c){return c?(c=Sa(a,b),Oa.test(c)?n(a).position()[b]+&amp;quot;px&amp;quot;:c):void 0})}),n.each({Height:&amp;quot;height&amp;quot;,Width:&amp;quot;width&amp;quot;},function(a,b){n.each({
padding:&amp;quot;inner&amp;quot;+a,content:b,&amp;quot;&amp;quot;:&amp;quot;outer&amp;quot;+a},function(c,d){n.fn[d]=function(d,e){var f=arguments.length&amp;amp;&amp;amp;(c||&amp;quot;boolean&amp;quot;!=typeof d),g=c||(d===!0||e===!0?&amp;quot;margin&amp;quot;:&amp;quot;border&amp;quot;);return Y(this,function(b,c,d){var e;return n.isWindow(b)?b.document.documentElement[&amp;quot;client&amp;quot;+a]:9===b.nodeType?(e=b.documentElement,Math.max(b.body[&amp;quot;scroll&amp;quot;+a],e[&amp;quot;scroll&amp;quot;+a],b.body[&amp;quot;offset&amp;quot;+a],e[&amp;quot;offset&amp;quot;+a],e[&amp;quot;client&amp;quot;+a])):void 0===d?n.css(b,c,g):n.style(b,c,d,g)},b,f?d:void 0,f,null)}})}),n.fn.extend({bind:function(a,b,c){return this.on(a,null,b,c)},unbind:function(a,b){return this.off(a,null,b)},delegate:function(a,b,c,d){return this.on(b,a,c,d)},undelegate:function(a,b,c){return 1===arguments.length?this.off(a,&amp;quot;**&amp;quot;):this.off(b,a||&amp;quot;**&amp;quot;,c)}}),n.fn.size=function(){return this.length},n.fn.andSelf=n.fn.addBack,&amp;quot;function&amp;quot;==typeof define&amp;amp;&amp;amp;define.amd&amp;amp;&amp;amp;define(&amp;quot;jquery&amp;quot;,[],function(){return n});var nc=a.jQuery,oc=a.$;return n.noConflict=function(b){return a.$===n&amp;amp;&amp;amp;(a.$=oc),b&amp;amp;&amp;amp;a.jQuery===n&amp;amp;&amp;amp;(a.jQuery=nc),n},b||(a.jQuery=a.$=n),n});/*!&lt;/p>
&lt;ul>
&lt;li>Bootstrap v3.3.7 (&lt;a href="http://getbootstrap.com">http://getbootstrap.com&lt;/a>)&lt;/li>
&lt;li>Copyright 2011-2016 Twitter, Inc.&lt;/li>
&lt;li>Licensed under the MIT license
&lt;em>/
if(&amp;quot;undefined&amp;quot;==typeof jQuery)throw new Error(&amp;quot;Bootstrap's JavaScript requires jQuery&amp;quot;);+function(a){&amp;quot;use strict&amp;quot;;var b=a.fn.jquery.split(&amp;quot; &amp;quot;)[0].split(&amp;quot;.&amp;quot;);if(b[0]&amp;lt;2&amp;amp;&amp;amp;b[1]&amp;lt;9||1==b[0]&amp;amp;&amp;amp;9==b[1]&amp;amp;&amp;amp;b[2]&amp;lt;1||b[0]&amp;gt;3)throw new Error(&amp;quot;Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but lower than version 4&amp;quot;)}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(){var a=document.createElement(&amp;quot;bootstrap&amp;quot;),b={WebkitTransition:&amp;quot;webkitTransitionEnd&amp;quot;,MozTransition:&amp;quot;transitionend&amp;quot;,OTransition:&amp;quot;oTransitionEnd otransitionend&amp;quot;,transition:&amp;quot;transitionend&amp;quot;};for(var c in b)if(void 0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var c=!1,d=this;a(this).one(&amp;quot;bsTransitionEnd&amp;quot;,function(){c=!0});var e=function(){c||a(d).trigger(a.support.transition.end)};return setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&amp;amp;&amp;amp;(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b.target).is(this))return b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var c=a(this),e=c.data(&amp;quot;bs.alert&amp;quot;);e||c.data(&amp;quot;bs.alert&amp;quot;,e=new d(this)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;e[b].call(c)})}var c='[data-dismiss=&amp;quot;alert&amp;quot;]',d=function(b){a(b).on(&amp;quot;click&amp;quot;,c,this.close)};d.VERSION=&amp;quot;3.3.7&amp;quot;,d.TRANSITION_DURATION=150,d.prototype.close=function(b){function c(){g.detach().trigger(&amp;quot;closed.bs.alert&amp;quot;).remove()}var e=a(this),f=e.attr(&amp;quot;data-target&amp;quot;);f||(f=e.attr(&amp;quot;href&amp;quot;),f=f&amp;amp;&amp;amp;f.replace(/.&lt;/em>(?=#[^\s]&lt;em>$)/,&amp;quot;&amp;quot;));var g=a(&amp;quot;#&amp;quot;===f?[]:f);b&amp;amp;&amp;amp;b.preventDefault(),g.length||(g=e.closest(&amp;quot;.alert&amp;quot;)),g.trigger(b=a.Event(&amp;quot;close.bs.alert&amp;quot;)),b.isDefaultPrevented()||(g.removeClass(&amp;quot;in&amp;quot;),a.support.transition&amp;amp;&amp;amp;g.hasClass(&amp;quot;fade&amp;quot;)?g.one(&amp;quot;bsTransitionEnd&amp;quot;,c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return a.fn.alert=e,this},a(document).on(&amp;quot;click.bs.alert.data-api&amp;quot;,c,d.prototype.close)}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.button&amp;quot;),f=&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b;e||d.data(&amp;quot;bs.button&amp;quot;,e=new c(this,f)),&amp;quot;toggle&amp;quot;==b?e.toggle():b&amp;amp;&amp;amp;e.setState(b)})}var c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION=&amp;quot;3.3.7&amp;quot;,c.DEFAULTS={loadingText:&amp;quot;loading&amp;hellip;&amp;quot;},c.prototype.setState=function(b){var c=&amp;quot;disabled&amp;quot;,d=this.$element,e=d.is(&amp;quot;input&amp;quot;)?&amp;quot;val&amp;quot;:&amp;quot;html&amp;quot;,f=d.data();b+=&amp;quot;Text&amp;quot;,null==f.resetText&amp;amp;&amp;amp;d.data(&amp;quot;resetText&amp;quot;,d&lt;a href="">e&lt;/a>),setTimeout(a.proxy(function(){d&lt;a href="null==f[b]?this.options[b]:f[b]">e&lt;/a>,&amp;quot;loadingText&amp;quot;==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&amp;amp;&amp;amp;(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var a=!0,b=this.$element.closest('[data-toggle=&amp;quot;buttons&amp;quot;]');if(b.length){var c=this.$element.find(&amp;quot;input&amp;quot;);&amp;quot;radio&amp;quot;==c.prop(&amp;quot;type&amp;quot;)?(c.prop(&amp;quot;checked&amp;quot;)&amp;amp;&amp;amp;(a=!1),b.find(&amp;quot;.active&amp;quot;).removeClass(&amp;quot;active&amp;quot;),this.$element.addClass(&amp;quot;active&amp;quot;)):&amp;quot;checkbox&amp;quot;==c.prop(&amp;quot;type&amp;quot;)&amp;amp;&amp;amp;(c.prop(&amp;quot;checked&amp;quot;)!==this.$element.hasClass(&amp;quot;active&amp;quot;)&amp;amp;&amp;amp;(a=!1),this.$element.toggleClass(&amp;quot;active&amp;quot;)),c.prop(&amp;quot;checked&amp;quot;,this.$element.hasClass(&amp;quot;active&amp;quot;)),a&amp;amp;&amp;amp;c.trigger(&amp;quot;change&amp;quot;)}else this.$element.attr(&amp;quot;aria-pressed&amp;quot;,!this.$element.hasClass(&amp;quot;active&amp;quot;)),this.$element.toggleClass(&amp;quot;active&amp;quot;)};var d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return a.fn.button=d,this},a(document).on(&amp;quot;click.bs.button.data-api&amp;quot;,'[data-toggle^=&amp;quot;button&amp;quot;]',function(c){var d=a(c.target).closest(&amp;quot;.btn&amp;quot;);b.call(d,&amp;quot;toggle&amp;quot;),a(c.target).is('input[type=&amp;quot;radio&amp;quot;], input[type=&amp;quot;checkbox&amp;quot;]')||(c.preventDefault(),d.is(&amp;quot;input,button&amp;quot;)?d.trigger(&amp;quot;focus&amp;quot;):d.find(&amp;quot;input:visible,button:visible&amp;quot;).first().trigger(&amp;quot;focus&amp;quot;))}).on(&amp;quot;focus.bs.button.data-api blur.bs.button.data-api&amp;quot;,'[data-toggle^=&amp;quot;button&amp;quot;]',function(b){a(b.target).closest(&amp;quot;.btn&amp;quot;).toggleClass(&amp;quot;focus&amp;quot;,/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.carousel&amp;quot;),f=a.extend({},c.DEFAULTS,d.data(),&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b),g=&amp;quot;string&amp;quot;==typeof b?b:f.slide;e||d.data(&amp;quot;bs.carousel&amp;quot;,e=new c(this,f)),&amp;quot;number&amp;quot;==typeof b?e.to(b):g?e&lt;a href="">g&lt;/a>:f.interval&amp;amp;&amp;amp;e.pause().cycle()})}var c=function(b,c){this.$element=a(b),this.$indicators=this.$element.find(&amp;quot;.carousel-indicators&amp;quot;),this.options=c,this.paused=null,this.sliding=null,this.interval=null,this.$active=null,this.$items=null,this.options.keyboard&amp;amp;&amp;amp;this.$element.on(&amp;quot;keydown.bs.carousel&amp;quot;,a.proxy(this.keydown,this)),&amp;quot;hover&amp;quot;==this.options.pause&amp;amp;&amp;amp;!(&amp;quot;ontouchstart&amp;quot;in document.documentElement)&amp;amp;&amp;amp;this.$element.on(&amp;quot;mouseenter.bs.carousel&amp;quot;,a.proxy(this.pause,this)).on(&amp;quot;mouseleave.bs.carousel&amp;quot;,a.proxy(this.cycle,this))};c.VERSION=&amp;quot;3.3.7&amp;quot;,c.TRANSITION_DURATION=600,c.DEFAULTS={interval:5e3,pause:&amp;quot;hover&amp;quot;,wrap:!0,keyboard:!0},c.prototype.keydown=function(a){if(!/input|textarea/i.test(a.target.tagName)){switch(a.which){case 37:this.prev();break;case 39:this.next();break;default:return}a.preventDefault()}},c.prototype.cycle=function(b){return b||(this.paused=!1),this.interval&amp;amp;&amp;amp;clearInterval(this.interval),this.options.interval&amp;amp;&amp;amp;!this.paused&amp;amp;&amp;amp;(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},c.prototype.getItemIndex=function(a){return this.$items=a.parent().children(&amp;quot;.item&amp;quot;),this.$items.index(a||this.$active)},c.prototype.getItemForDirection=function(a,b){var c=this.getItemIndex(b),d=&amp;quot;prev&amp;quot;==a&amp;amp;&amp;amp;0===c||&amp;quot;next&amp;quot;==a&amp;amp;&amp;amp;c==this.$items.length-1;if(d&amp;amp;&amp;amp;!this.options.wrap)return b;var e=&amp;quot;prev&amp;quot;==a?-1:1,f=(c+e)%this.$items.length;return this.$items.eq(f)},c.prototype.to=function(a){var b=this,c=this.getItemIndex(this.$active=this.$element.find(&amp;quot;.item.active&amp;quot;));if(!(a&amp;gt;this.$items.length-1||a&amp;lt;0))return this.sliding?this.$element.one(&amp;quot;slid.bs.carousel&amp;quot;,function(){b.to(a)}):c==a?this.pause().cycle():this.slide(a&amp;gt;c?&amp;quot;next&amp;quot;:&amp;quot;prev&amp;quot;,this.$items.eq(a))},c.prototype.pause=function(b){return b||(this.paused=!0),this.$element.find(&amp;quot;.next, .prev&amp;quot;).length&amp;amp;&amp;amp;a.support.transition&amp;amp;&amp;amp;(this.$element.trigger(a.support.transition.end),this.cycle(!0)),this.interval=clearInterval(this.interval),this},c.prototype.next=function(){if(!this.sliding)return this.slide(&amp;quot;next&amp;quot;)},c.prototype.prev=function(){if(!this.sliding)return this.slide(&amp;quot;prev&amp;quot;)},c.prototype.slide=function(b,d){var e=this.$element.find(&amp;quot;.item.active&amp;quot;),f=d||this.getItemForDirection(b,e),g=this.interval,h=&amp;quot;next&amp;quot;==b?&amp;quot;left&amp;quot;:&amp;quot;right&amp;quot;,i=this;if(f.hasClass(&amp;quot;active&amp;quot;))return this.sliding=!1;var j=f[0],k=a.Event(&amp;quot;slide.bs.carousel&amp;quot;,{relatedTarget:j,direction:h});if(this.$element.trigger(k),!k.isDefaultPrevented()){if(this.sliding=!0,g&amp;amp;&amp;amp;this.pause(),this.$indicators.length){this.$indicators.find(&amp;quot;.active&amp;quot;).removeClass(&amp;quot;active&amp;quot;);var l=a(this.$indicators.children()[this.getItemIndex(f)]);l&amp;amp;&amp;amp;l.addClass(&amp;quot;active&amp;quot;)}var m=a.Event(&amp;quot;slid.bs.carousel&amp;quot;,{relatedTarget:j,direction:h});return a.support.transition&amp;amp;&amp;amp;this.$element.hasClass(&amp;quot;slide&amp;quot;)?(f.addClass(b),f[0].offsetWidth,e.addClass(h),f.addClass(h),e.one(&amp;quot;bsTransitionEnd&amp;quot;,function(){f.removeClass([b,h].join(&amp;quot; &amp;quot;)).addClass(&amp;quot;active&amp;quot;),e.removeClass([&amp;quot;active&amp;quot;,h].join(&amp;quot; &amp;quot;)),i.sliding=!1,setTimeout(function(){i.$element.trigger(m)},0)}).emulateTransitionEnd(c.TRANSITION_DURATION)):(e.removeClass(&amp;quot;active&amp;quot;),f.addClass(&amp;quot;active&amp;quot;),this.sliding=!1,this.$element.trigger(m)),g&amp;amp;&amp;amp;this.cycle(),this}};var d=a.fn.carousel;a.fn.carousel=b,a.fn.carousel.Constructor=c,a.fn.carousel.noConflict=function(){return a.fn.carousel=d,this};var e=function(c){var d,e=a(this),f=a(e.attr(&amp;quot;data-target&amp;quot;)||(d=e.attr(&amp;quot;href&amp;quot;))&amp;amp;&amp;amp;d.replace(/.&lt;/em>(?=#[^\s]+$)/,&amp;quot;&amp;quot;));if(f.hasClass(&amp;quot;carousel&amp;quot;)){var g=a.extend({},f.data(),e.data()),h=e.attr(&amp;quot;data-slide-to&amp;quot;);h&amp;amp;&amp;amp;(g.interval=!1),b.call(f,g),h&amp;amp;&amp;amp;f.data(&amp;quot;bs.carousel&amp;quot;).to(h),c.preventDefault()}};a(document).on(&amp;quot;click.bs.carousel.data-api&amp;quot;,&amp;quot;[data-slide]&amp;quot;,e).on(&amp;quot;click.bs.carousel.data-api&amp;quot;,&amp;quot;[data-slide-to]&amp;quot;,e),a(window).on(&amp;quot;load&amp;quot;,function(){a('[data-ride=&amp;quot;carousel&amp;quot;]').each(function(){var c=a(this);b.call(c,c.data())})})}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){var c,d=b.attr(&amp;quot;data-target&amp;quot;)||(c=b.attr(&amp;quot;href&amp;quot;))&amp;amp;&amp;amp;c.replace(/.&lt;em>(?=#[^\s]+$)/,&amp;quot;&amp;quot;);return a(d)}function c(b){return this.each(function(){var c=a(this),e=c.data(&amp;quot;bs.collapse&amp;quot;),f=a.extend({},d.DEFAULTS,c.data(),&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b);!e&amp;amp;&amp;amp;f.toggle&amp;amp;&amp;amp;/show|hide/.test(b)&amp;amp;&amp;amp;(f.toggle=!1),e||c.data(&amp;quot;bs.collapse&amp;quot;,e=new d(this,f)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;e&lt;a href="">b&lt;/a>})}var d=function(b,c){this.$element=a(b),this.options=a.extend({},d.DEFAULTS,c),this.$trigger=a('[data-toggle=&amp;quot;collapse&amp;quot;][href=&amp;quot;#'+b.id+'&amp;quot;],[data-toggle=&amp;quot;collapse&amp;quot;][data-target=&amp;quot;#'+b.id+'&amp;quot;]'),this.transitioning=null,this.options.parent?this.$parent=this.getParent():this.addAriaAndCollapsedClass(this.$element,this.$trigger),this.options.toggle&amp;amp;&amp;amp;this.toggle()};d.VERSION=&amp;quot;3.3.7&amp;quot;,d.TRANSITION_DURATION=350,d.DEFAULTS={toggle:!0},d.prototype.dimension=function(){var a=this.$element.hasClass(&amp;quot;width&amp;quot;);return a?&amp;quot;width&amp;quot;:&amp;quot;height&amp;quot;},d.prototype.show=function(){if(!this.transitioning&amp;amp;&amp;amp;!this.$element.hasClass(&amp;quot;in&amp;quot;)){var b,e=this.$parent&amp;amp;&amp;amp;this.$parent.children(&amp;quot;.panel&amp;quot;).children(&amp;quot;.in, .collapsing&amp;quot;);if(!(e&amp;amp;&amp;amp;e.length&amp;amp;&amp;amp;(b=e.data(&amp;quot;bs.collapse&amp;quot;),b&amp;amp;&amp;amp;b.transitioning))){var f=a.Event(&amp;quot;show.bs.collapse&amp;quot;);if(this.$element.trigger(f),!f.isDefaultPrevented()){e&amp;amp;&amp;amp;e.length&amp;amp;&amp;amp;(c.call(e,&amp;quot;hide&amp;quot;),b||e.data(&amp;quot;bs.collapse&amp;quot;,null));var g=this.dimension();this.$element.removeClass(&amp;quot;collapse&amp;quot;).addClass(&amp;quot;collapsing&amp;quot;)&lt;a href="0">g&lt;/a>.attr(&amp;quot;aria-expanded&amp;quot;,!0),this.$trigger.removeClass(&amp;quot;collapsed&amp;quot;).attr(&amp;quot;aria-expanded&amp;quot;,!0),this.transitioning=1;var h=function(){this.$element.removeClass(&amp;quot;collapsing&amp;quot;).addClass(&amp;quot;collapse in&amp;quot;)&lt;a href="&amp;amp;quot;&amp;amp;quot;">g&lt;/a>,this.transitioning=0,this.$element.trigger(&amp;quot;shown.bs.collapse&amp;quot;)};if(!a.support.transition)return h.call(this);var i=a.camelCase([&amp;quot;scroll&amp;quot;,g].join(&amp;quot;-&amp;quot;));this.$element.one(&amp;quot;bsTransitionEnd&amp;quot;,a.proxy(h,this)).emulateTransitionEnd(d.TRANSITION_DURATION)&lt;a href="this.$element[0][i]">g&lt;/a>}}}},d.prototype.hide=function(){if(!this.transitioning&amp;amp;&amp;amp;this.$element.hasClass(&amp;quot;in&amp;quot;)){var b=a.Event(&amp;quot;hide.bs.collapse&amp;quot;);if(this.$element.trigger(b),!b.isDefaultPrevented()){var c=this.dimension();this.$element&lt;a href="this.$element[c]%28%29">c&lt;/a>[0].offsetHeight,this.$element.addClass(&amp;quot;collapsing&amp;quot;).removeClass(&amp;quot;collapse in&amp;quot;).attr(&amp;quot;aria-expanded&amp;quot;,!1),this.$trigger.addClass(&amp;quot;collapsed&amp;quot;).attr(&amp;quot;aria-expanded&amp;quot;,!1),this.transitioning=1;var e=function(){this.transitioning=0,this.$element.removeClass(&amp;quot;collapsing&amp;quot;).addClass(&amp;quot;collapse&amp;quot;).trigger(&amp;quot;hidden.bs.collapse&amp;quot;)};return a.support.transition?void this.$element&lt;a href="0">c&lt;/a>.one(&amp;quot;bsTransitionEnd&amp;quot;,a.proxy(e,this)).emulateTransitionEnd(d.TRANSITION_DURATION):e.call(this)}}},d.prototype.toggle=function(){this&lt;a href="">this.$element.hasClass(&amp;quot;in&amp;quot;)?&amp;quot;hide&amp;quot;:&amp;quot;show&amp;quot;&lt;/a>},d.prototype.getParent=function(){return a(this.options.parent).find('[data-toggle=&amp;quot;collapse&amp;quot;][data-parent=&amp;quot;'+this.options.parent+'&amp;quot;]').each(a.proxy(function(c,d){var e=a(d);this.addAriaAndCollapsedClass(b(e),e)},this)).end()},d.prototype.addAriaAndCollapsedClass=function(a,b){var c=a.hasClass(&amp;quot;in&amp;quot;);a.attr(&amp;quot;aria-expanded&amp;quot;,c),b.toggleClass(&amp;quot;collapsed&amp;quot;,!c).attr(&amp;quot;aria-expanded&amp;quot;,c)};var e=a.fn.collapse;a.fn.collapse=c,a.fn.collapse.Constructor=d,a.fn.collapse.noConflict=function(){return a.fn.collapse=e,this},a(document).on(&amp;quot;click.bs.collapse.data-api&amp;quot;,'[data-toggle=&amp;quot;collapse&amp;quot;]',function(d){var e=a(this);e.attr(&amp;quot;data-target&amp;quot;)||d.preventDefault();var f=b(e),g=f.data(&amp;quot;bs.collapse&amp;quot;),h=g?&amp;quot;toggle&amp;quot;:e.data();c.call(f,h)})}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){var c=b.attr(&amp;quot;data-target&amp;quot;);c||(c=b.attr(&amp;quot;href&amp;quot;),c=c&amp;amp;&amp;amp;/#[A-Za-z]/.test(c)&amp;amp;&amp;amp;c.replace(/.&lt;/em>(?=#[^\s]&lt;em>$)/,&amp;quot;&amp;quot;));var d=c&amp;amp;&amp;amp;a(c);return d&amp;amp;&amp;amp;d.length?d:b.parent()}function c(c){c&amp;amp;&amp;amp;3===c.which||(a(e).remove(),a(f).each(function(){var d=a(this),e=b(d),f={relatedTarget:this};e.hasClass(&amp;quot;open&amp;quot;)&amp;amp;&amp;amp;(c&amp;amp;&amp;amp;&amp;quot;click&amp;quot;==c.type&amp;amp;&amp;amp;/input|textarea/i.test(c.target.tagName)&amp;amp;&amp;amp;a.contains(e[0],c.target)||(e.trigger(c=a.Event(&amp;quot;hide.bs.dropdown&amp;quot;,f)),c.isDefaultPrevented()||(d.attr(&amp;quot;aria-expanded&amp;quot;,&amp;quot;false&amp;quot;),e.removeClass(&amp;quot;open&amp;quot;).trigger(a.Event(&amp;quot;hidden.bs.dropdown&amp;quot;,f)))))}))}function d(b){return this.each(function(){var c=a(this),d=c.data(&amp;quot;bs.dropdown&amp;quot;);d||c.data(&amp;quot;bs.dropdown&amp;quot;,d=new g(this)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;d[b].call(c)})}var e=&amp;quot;.dropdown-backdrop&amp;quot;,f='[data-toggle=&amp;quot;dropdown&amp;quot;]',g=function(b){a(b).on(&amp;quot;click.bs.dropdown&amp;quot;,this.toggle)};g.VERSION=&amp;quot;3.3.7&amp;quot;,g.prototype.toggle=function(d){var e=a(this);if(!e.is(&amp;quot;.disabled, :disabled&amp;quot;)){var f=b(e),g=f.hasClass(&amp;quot;open&amp;quot;);if(c(),!g){&amp;quot;ontouchstart&amp;quot;in document.documentElement&amp;amp;&amp;amp;!f.closest(&amp;quot;.navbar-nav&amp;quot;).length&amp;amp;&amp;amp;a(document.createElement(&amp;quot;div&amp;quot;)).addClass(&amp;quot;dropdown-backdrop&amp;quot;).insertAfter(a(this)).on(&amp;quot;click&amp;quot;,c);var h={relatedTarget:this};if(f.trigger(d=a.Event(&amp;quot;show.bs.dropdown&amp;quot;,h)),d.isDefaultPrevented())return;e.trigger(&amp;quot;focus&amp;quot;).attr(&amp;quot;aria-expanded&amp;quot;,&amp;quot;true&amp;quot;),f.toggleClass(&amp;quot;open&amp;quot;).trigger(a.Event(&amp;quot;shown.bs.dropdown&amp;quot;,h))}return!1}},g.prototype.keydown=function(c){if(/(38|40|27|32)/.test(c.which)&amp;amp;&amp;amp;!/input|textarea/i.test(c.target.tagName)){var d=a(this);if(c.preventDefault(),c.stopPropagation(),!d.is(&amp;quot;.disabled, :disabled&amp;quot;)){var e=b(d),g=e.hasClass(&amp;quot;open&amp;quot;);if(!g&amp;amp;&amp;amp;27!=c.which||g&amp;amp;&amp;amp;27==c.which)return 27==c.which&amp;amp;&amp;amp;e.find(f).trigger(&amp;quot;focus&amp;quot;),d.trigger(&amp;quot;click&amp;quot;);var h=&amp;quot; li:not(.disabled):visible a&amp;quot;,i=e.find(&amp;quot;.dropdown-menu&amp;quot;+h);if(i.length){var j=i.index(c.target);38==c.which&amp;amp;&amp;amp;j&amp;gt;0&amp;amp;&amp;amp;j&amp;ndash;,40==c.which&amp;amp;&amp;amp;j&amp;lt;i.length-1&amp;amp;&amp;amp;j++,~j||(j=0),i.eq(j).trigger(&amp;quot;focus&amp;quot;)}}}};var h=a.fn.dropdown;a.fn.dropdown=d,a.fn.dropdown.Constructor=g,a.fn.dropdown.noConflict=function(){return a.fn.dropdown=h,this},a(document).on(&amp;quot;click.bs.dropdown.data-api&amp;quot;,c).on(&amp;quot;click.bs.dropdown.data-api&amp;quot;,&amp;quot;.dropdown form&amp;quot;,function(a){a.stopPropagation()}).on(&amp;quot;click.bs.dropdown.data-api&amp;quot;,f,g.prototype.toggle).on(&amp;quot;keydown.bs.dropdown.data-api&amp;quot;,f,g.prototype.keydown).on(&amp;quot;keydown.bs.dropdown.data-api&amp;quot;,&amp;quot;.dropdown-menu&amp;quot;,g.prototype.keydown)}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b,d){return this.each(function(){var e=a(this),f=e.data(&amp;quot;bs.modal&amp;quot;),g=a.extend({},c.DEFAULTS,e.data(),&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b);f||e.data(&amp;quot;bs.modal&amp;quot;,f=new c(this,g)),&amp;quot;string&amp;quot;==typeof b?f&lt;a href="d">b&lt;/a>:g.show&amp;amp;&amp;amp;f.show(d)})}var c=function(b,c){this.options=c,this.$body=a(document.body),this.$element=a(b),this.$dialog=this.$element.find(&amp;quot;.modal-dialog&amp;quot;),this.$backdrop=null,this.isShown=null,this.originalBodyPad=null,this.scrollbarWidth=0,this.ignoreBackdropClick=!1,this.options.remote&amp;amp;&amp;amp;this.$element.find(&amp;quot;.modal-content&amp;quot;).load(this.options.remote,a.proxy(function(){this.$element.trigger(&amp;quot;loaded.bs.modal&amp;quot;)},this))};c.VERSION=&amp;quot;3.3.7&amp;quot;,c.TRANSITION_DURATION=300,c.BACKDROP_TRANSITION_DURATION=150,c.DEFAULTS={backdrop:!0,keyboard:!0,show:!0},c.prototype.toggle=function(a){return this.isShown?this.hide():this.show(a)},c.prototype.show=function(b){var d=this,e=a.Event(&amp;quot;show.bs.modal&amp;quot;,{relatedTarget:b});this.$element.trigger(e),this.isShown||e.isDefaultPrevented()||(this.isShown=!0,this.checkScrollbar(),this.setScrollbar(),this.$body.addClass(&amp;quot;modal-open&amp;quot;),this.escape(),this.resize(),this.$element.on(&amp;quot;click.dismiss.bs.modal&amp;quot;,'[data-dismiss=&amp;quot;modal&amp;quot;]',a.proxy(this.hide,this)),this.$dialog.on(&amp;quot;mousedown.dismiss.bs.modal&amp;quot;,function(){d.$element.one(&amp;quot;mouseup.dismiss.bs.modal&amp;quot;,function(b){a(b.target).is(d.$element)&amp;amp;&amp;amp;(d.ignoreBackdropClick=!0)})}),this.backdrop(function(){var e=a.support.transition&amp;amp;&amp;amp;d.$element.hasClass(&amp;quot;fade&amp;quot;);d.$element.parent().length||d.$element.appendTo(d.$body),d.$element.show().scrollTop(0),d.adjustDialog(),e&amp;amp;&amp;amp;d.$element[0].offsetWidth,d.$element.addClass(&amp;quot;in&amp;quot;),d.enforceFocus();var f=a.Event(&amp;quot;shown.bs.modal&amp;quot;,{relatedTarget:b});e?d.$dialog.one(&amp;quot;bsTransitionEnd&amp;quot;,function(){d.$element.trigger(&amp;quot;focus&amp;quot;).trigger(f)}).emulateTransitionEnd(c.TRANSITION_DURATION):d.$element.trigger(&amp;quot;focus&amp;quot;).trigger(f)}))},c.prototype.hide=function(b){b&amp;amp;&amp;amp;b.preventDefault(),b=a.Event(&amp;quot;hide.bs.modal&amp;quot;),this.$element.trigger(b),this.isShown&amp;amp;&amp;amp;!b.isDefaultPrevented()&amp;amp;&amp;amp;(this.isShown=!1,this.escape(),this.resize(),a(document).off(&amp;quot;focusin.bs.modal&amp;quot;),this.$element.removeClass(&amp;quot;in&amp;quot;).off(&amp;quot;click.dismiss.bs.modal&amp;quot;).off(&amp;quot;mouseup.dismiss.bs.modal&amp;quot;),this.$dialog.off(&amp;quot;mousedown.dismiss.bs.modal&amp;quot;),a.support.transition&amp;amp;&amp;amp;this.$element.hasClass(&amp;quot;fade&amp;quot;)?this.$element.one(&amp;quot;bsTransitionEnd&amp;quot;,a.proxy(this.hideModal,this)).emulateTransitionEnd(c.TRANSITION_DURATION):this.hideModal())},c.prototype.enforceFocus=function(){a(document).off(&amp;quot;focusin.bs.modal&amp;quot;).on(&amp;quot;focusin.bs.modal&amp;quot;,a.proxy(function(a){document===a.target||this.$element[0]===a.target||this.$element.has(a.target).length||this.$element.trigger(&amp;quot;focus&amp;quot;)},this))},c.prototype.escape=function(){this.isShown&amp;amp;&amp;amp;this.options.keyboard?this.$element.on(&amp;quot;keydown.dismiss.bs.modal&amp;quot;,a.proxy(function(a){27==a.which&amp;amp;&amp;amp;this.hide()},this)):this.isShown||this.$element.off(&amp;quot;keydown.dismiss.bs.modal&amp;quot;)},c.prototype.resize=function(){this.isShown?a(window).on(&amp;quot;resize.bs.modal&amp;quot;,a.proxy(this.handleUpdate,this)):a(window).off(&amp;quot;resize.bs.modal&amp;quot;)},c.prototype.hideModal=function(){var a=this;this.$element.hide(),this.backdrop(function(){a.$body.removeClass(&amp;quot;modal-open&amp;quot;),a.resetAdjustments(),a.resetScrollbar(),a.$element.trigger(&amp;quot;hidden.bs.modal&amp;quot;)})},c.prototype.removeBackdrop=function(){this.$backdrop&amp;amp;&amp;amp;this.$backdrop.remove(),this.$backdrop=null},c.prototype.backdrop=function(b){var d=this,e=this.$element.hasClass(&amp;quot;fade&amp;quot;)?&amp;quot;fade&amp;quot;:&amp;quot;&amp;quot;;if(this.isShown&amp;amp;&amp;amp;this.options.backdrop){var f=a.support.transition&amp;amp;&amp;amp;e;if(this.$backdrop=a(document.createElement(&amp;quot;div&amp;quot;)).addClass(&amp;quot;modal-backdrop &amp;quot;+e).appendTo(this.$body),this.$element.on(&amp;quot;click.dismiss.bs.modal&amp;quot;,a.proxy(function(a){return this.ignoreBackdropClick?void(this.ignoreBackdropClick=!1):void(a.target===a.currentTarget&amp;amp;&amp;amp;(&amp;quot;static&amp;quot;==this.options.backdrop?this.$element[0].focus():this.hide()))},this)),f&amp;amp;&amp;amp;this.$backdrop[0].offsetWidth,this.$backdrop.addClass(&amp;quot;in&amp;quot;),!b)return;f?this.$backdrop.one(&amp;quot;bsTransitionEnd&amp;quot;,b).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):b()}else if(!this.isShown&amp;amp;&amp;amp;this.$backdrop){this.$backdrop.removeClass(&amp;quot;in&amp;quot;);var g=function(){d.removeBackdrop(),b&amp;amp;&amp;amp;b()};a.support.transition&amp;amp;&amp;amp;this.$element.hasClass(&amp;quot;fade&amp;quot;)?this.$backdrop.one(&amp;quot;bsTransitionEnd&amp;quot;,g).emulateTransitionEnd(c.BACKDROP_TRANSITION_DURATION):g()}else b&amp;amp;&amp;amp;b()},c.prototype.handleUpdate=function(){this.adjustDialog()},c.prototype.adjustDialog=function(){var a=this.$element[0].scrollHeight&amp;gt;document.documentElement.clientHeight;this.$element.css({paddingLeft:!this.bodyIsOverflowing&amp;amp;&amp;amp;a?this.scrollbarWidth:&amp;quot;&amp;quot;,paddingRight:this.bodyIsOverflowing&amp;amp;&amp;amp;!a?this.scrollbarWidth:&amp;quot;&amp;quot;})},c.prototype.resetAdjustments=function(){this.$element.css({paddingLeft:&amp;quot;&amp;quot;,paddingRight:&amp;quot;&amp;quot;})},c.prototype.checkScrollbar=function(){var a=window.innerWidth;if(!a){var b=document.documentElement.getBoundingClientRect();a=b.right-Math.abs(b.left)}this.bodyIsOverflowing=document.body.clientWidth&amp;lt;a,this.scrollbarWidth=this.measureScrollbar()},c.prototype.setScrollbar=function(){var a=parseInt(this.$body.css(&amp;quot;padding-right&amp;quot;)||0,10);this.originalBodyPad=document.body.style.paddingRight||&amp;quot;&amp;quot;,this.bodyIsOverflowing&amp;amp;&amp;amp;this.$body.css(&amp;quot;padding-right&amp;quot;,a+this.scrollbarWidth)},c.prototype.resetScrollbar=function(){this.$body.css(&amp;quot;padding-right&amp;quot;,this.originalBodyPad)},c.prototype.measureScrollbar=function(){var a=document.createElement(&amp;quot;div&amp;quot;);a.className=&amp;quot;modal-scrollbar-measure&amp;quot;,this.$body.append(a);var b=a.offsetWidth-a.clientWidth;return this.$body[0].removeChild(a),b};var d=a.fn.modal;a.fn.modal=b,a.fn.modal.Constructor=c,a.fn.modal.noConflict=function(){return a.fn.modal=d,this},a(document).on(&amp;quot;click.bs.modal.data-api&amp;quot;,'[data-toggle=&amp;quot;modal&amp;quot;]',function(c){var d=a(this),e=d.attr(&amp;quot;href&amp;quot;),f=a(d.attr(&amp;quot;data-target&amp;quot;)||e&amp;amp;&amp;amp;e.replace(/.&lt;/em>(?=#[^\s]+$)/,&amp;quot;&amp;quot;)),g=f.data(&amp;quot;bs.modal&amp;quot;)?&amp;quot;toggle&amp;quot;:a.extend({remote:!/#/.test(e)&amp;amp;&amp;amp;e},f.data(),d.data());d.is(&amp;quot;a&amp;quot;)&amp;amp;&amp;amp;c.preventDefault(),f.one(&amp;quot;show.bs.modal&amp;quot;,function(a){a.isDefaultPrevented()||f.one(&amp;quot;hidden.bs.modal&amp;quot;,function(){d.is(&amp;quot;:visible&amp;quot;)&amp;amp;&amp;amp;d.trigger(&amp;quot;focus&amp;quot;)})}),b.call(f,g,this)})}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.tooltip&amp;quot;),f=&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b;!e&amp;amp;&amp;amp;/destroy|hide/.test(b)||(e||d.data(&amp;quot;bs.tooltip&amp;quot;,e=new c(this,f)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;e&lt;a href="">b&lt;/a>)})}var c=function(a,b){this.type=null,this.options=null,this.enabled=null,this.timeout=null,this.hoverState=null,this.$element=null,this.inState=null,this.init(&amp;quot;tooltip&amp;quot;,a,b)};c.VERSION=&amp;quot;3.3.7&amp;quot;,c.TRANSITION_DURATION=150,c.DEFAULTS={animation:!0,placement:&amp;quot;top&amp;quot;,selector:!1,template:'&amp;lt;div class=&amp;quot;tooltip&amp;quot; role=&amp;quot;tooltip&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;tooltip-arrow&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;div class=&amp;quot;tooltip-inner&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;',trigger:&amp;quot;hover focus&amp;quot;,title:&amp;quot;&amp;quot;,delay:0,html:!1,container:!1,viewport:{selector:&amp;quot;body&amp;quot;,padding:0}},c.prototype.init=function(b,c,d){if(this.enabled=!0,this.type=b,this.$element=a(c),this.options=this.getOptions(d),this.$viewport=this.options.viewport&amp;amp;&amp;amp;a(a.isFunction(this.options.viewport)?this.options.viewport.call(this,this.$element):this.options.viewport.selector||this.options.viewport),this.inState={click:!1,hover:!1,focus:!1},this.$element[0]instanceof document.constructor&amp;amp;&amp;amp;!this.options.selector)throw new Error(&amp;quot;&lt;code>selector&lt;/code> option must be specified when initializing &amp;quot;+this.type+&amp;quot; on the window.document object!&amp;quot;);for(var e=this.options.trigger.split(&amp;quot; &amp;quot;),f=e.length;f&amp;ndash;;){var g=e[f];if(&amp;quot;click&amp;quot;==g)this.$element.on(&amp;quot;click.&amp;quot;+this.type,this.options.selector,a.proxy(this.toggle,this));else if(&amp;quot;manual&amp;quot;!=g){var h=&amp;quot;hover&amp;quot;==g?&amp;quot;mouseenter&amp;quot;:&amp;quot;focusin&amp;quot;,i=&amp;quot;hover&amp;quot;==g?&amp;quot;mouseleave&amp;quot;:&amp;quot;focusout&amp;quot;;this.$element.on(h+&amp;quot;.&amp;quot;+this.type,this.options.selector,a.proxy(this.enter,this)),this.$element.on(i+&amp;quot;.&amp;quot;+this.type,this.options.selector,a.proxy(this.leave,this))}}this.options.selector?this._options=a.extend({},this.options,{trigger:&amp;quot;manual&amp;quot;,selector:&amp;quot;&amp;quot;}):this.fixTitle()},c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.getOptions=function(b){return b=a.extend({},this.getDefaults(),this.$element.data(),b),b.delay&amp;amp;&amp;amp;&amp;quot;number&amp;quot;==typeof b.delay&amp;amp;&amp;amp;(b.delay={show:b.delay,hide:b.delay}),b},c.prototype.getDelegateOptions=function(){var b={},c=this.getDefaults();return this._options&amp;amp;&amp;amp;a.each(this._options,function(a,d){c[a]!=d&amp;amp;&amp;amp;(b[a]=d)}),b},c.prototype.enter=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data(&amp;quot;bs.&amp;quot;+this.type);return c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data(&amp;quot;bs.&amp;quot;+this.type,c)),b instanceof a.Event&amp;amp;&amp;amp;(c.inState[&amp;quot;focusin&amp;quot;==b.type?&amp;quot;focus&amp;quot;:&amp;quot;hover&amp;quot;]=!0),c.tip().hasClass(&amp;quot;in&amp;quot;)||&amp;quot;in&amp;quot;==c.hoverState?void(c.hoverState=&amp;quot;in&amp;quot;):(clearTimeout(c.timeout),c.hoverState=&amp;quot;in&amp;quot;,c.options.delay&amp;amp;&amp;amp;c.options.delay.show?void(c.timeout=setTimeout(function(){&amp;quot;in&amp;quot;==c.hoverState&amp;amp;&amp;amp;c.show()},c.options.delay.show)):c.show())},c.prototype.isInStateTrue=function(){for(var a in this.inState)if(this.inState[a])return!0;return!1},c.prototype.leave=function(b){var c=b instanceof this.constructor?b:a(b.currentTarget).data(&amp;quot;bs.&amp;quot;+this.type);if(c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data(&amp;quot;bs.&amp;quot;+this.type,c)),b instanceof a.Event&amp;amp;&amp;amp;(c.inState[&amp;quot;focusout&amp;quot;==b.type?&amp;quot;focus&amp;quot;:&amp;quot;hover&amp;quot;]=!1),!c.isInStateTrue())return clearTimeout(c.timeout),c.hoverState=&amp;quot;out&amp;quot;,c.options.delay&amp;amp;&amp;amp;c.options.delay.hide?void(c.timeout=setTimeout(function(){&amp;quot;out&amp;quot;==c.hoverState&amp;amp;&amp;amp;c.hide()},c.options.delay.hide)):c.hide()},c.prototype.show=function(){var b=a.Event(&amp;quot;show.bs.&amp;quot;+this.type);if(this.hasContent()&amp;amp;&amp;amp;this.enabled){this.$element.trigger(b);var d=a.contains(this.$element[0].ownerDocument.documentElement,this.$element[0]);if(b.isDefaultPrevented()||!d)return;var e=this,f=this.tip(),g=this.getUID(this.type);this.setContent(),f.attr(&amp;quot;id&amp;quot;,g),this.$element.attr(&amp;quot;aria-describedby&amp;quot;,g),this.options.animation&amp;amp;&amp;amp;f.addClass(&amp;quot;fade&amp;quot;);var h=&amp;quot;function&amp;quot;==typeof this.options.placement?this.options.placement.call(this,f[0],this.$element[0]):this.options.placement,i=/\s?auto?\s?/i,j=i.test(h);j&amp;amp;&amp;amp;(h=h.replace(i,&amp;quot;&amp;quot;)||&amp;quot;top&amp;quot;),f.detach().css({top:0,left:0,display:&amp;quot;block&amp;quot;}).addClass(h).data(&amp;quot;bs.&amp;quot;+this.type,this),this.options.container?f.appendTo(this.options.container):f.insertAfter(this.$element),this.$element.trigger(&amp;quot;inserted.bs.&amp;quot;+this.type);var k=this.getPosition(),l=f[0].offsetWidth,m=f[0].offsetHeight;if(j){var n=h,o=this.getPosition(this.$viewport);h=&amp;quot;bottom&amp;quot;==h&amp;amp;&amp;amp;k.bottom+m&amp;gt;o.bottom?&amp;quot;top&amp;quot;:&amp;quot;top&amp;quot;==h&amp;amp;&amp;amp;k.top-m&amp;lt;o.top?&amp;quot;bottom&amp;quot;:&amp;quot;right&amp;quot;==h&amp;amp;&amp;amp;k.right+l&amp;gt;o.width?&amp;quot;left&amp;quot;:&amp;quot;left&amp;quot;==h&amp;amp;&amp;amp;k.left-l&amp;lt;o.left?&amp;quot;right&amp;quot;:h,f.removeClass(n).addClass(h)}var p=this.getCalculatedOffset(h,k,l,m);this.applyPlacement(p,h);var q=function(){var a=e.hoverState;e.$element.trigger(&amp;quot;shown.bs.&amp;quot;+e.type),e.hoverState=null,&amp;quot;out&amp;quot;==a&amp;amp;&amp;amp;e.leave(e)};a.support.transition&amp;amp;&amp;amp;this.$tip.hasClass(&amp;quot;fade&amp;quot;)?f.one(&amp;quot;bsTransitionEnd&amp;quot;,q).emulateTransitionEnd(c.TRANSITION_DURATION):q()}},c.prototype.applyPlacement=function(b,c){var d=this.tip(),e=d[0].offsetWidth,f=d[0].offsetHeight,g=parseInt(d.css(&amp;quot;margin-top&amp;quot;),10),h=parseInt(d.css(&amp;quot;margin-left&amp;quot;),10);isNaN(g)&amp;amp;&amp;amp;(g=0),isNaN(h)&amp;amp;&amp;amp;(h=0),b.top+=g,b.left+=h,a.offset.setOffset(d[0],a.extend({using:function(a){d.css({top:Math.round(a.top),left:Math.round(a.left)})}},b),0),d.addClass(&amp;quot;in&amp;quot;);var i=d[0].offsetWidth,j=d[0].offsetHeight;&amp;quot;top&amp;quot;==c&amp;amp;&amp;amp;j!=f&amp;amp;&amp;amp;(b.top=b.top+f-j);var k=this.getViewportAdjustedDelta(c,b,i,j);k.left?b.left+=k.left:b.top+=k.top;var l=/top|bottom/.test(c),m=l?2&lt;em>k.left-e+i:2&lt;/em>k.top-f+j,n=l?&amp;quot;offsetWidth&amp;quot;:&amp;quot;offsetHeight&amp;quot;;d.offset(b),this.replaceArrow(m,d[0][n],l)},c.prototype.replaceArrow=function(a,b,c){this.arrow().css(c?&amp;quot;left&amp;quot;:&amp;quot;top&amp;quot;,50*(1-a/b)+&amp;quot;%&amp;quot;).css(c?&amp;quot;top&amp;quot;:&amp;quot;left&amp;quot;,&amp;quot;&amp;quot;)},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle();a.find(&amp;quot;.tooltip-inner&amp;quot;)&lt;a href="b">this.options.html?&amp;quot;html&amp;quot;:&amp;quot;text&amp;quot;&lt;/a>,a.removeClass(&amp;quot;fade in top bottom left right&amp;quot;)},c.prototype.hide=function(b){function d(){&amp;quot;in&amp;quot;!=e.hoverState&amp;amp;&amp;amp;f.detach(),e.$element&amp;amp;&amp;amp;e.$element.removeAttr(&amp;quot;aria-describedby&amp;quot;).trigger(&amp;quot;hidden.bs.&amp;quot;+e.type),b&amp;amp;&amp;amp;b()}var e=this,f=a(this.$tip),g=a.Event(&amp;quot;hide.bs.&amp;quot;+this.type);if(this.$element.trigger(g),!g.isDefaultPrevented())return f.removeClass(&amp;quot;in&amp;quot;),a.support.transition&amp;amp;&amp;amp;f.hasClass(&amp;quot;fade&amp;quot;)?f.one(&amp;quot;bsTransitionEnd&amp;quot;,d).emulateTransitionEnd(c.TRANSITION_DURATION):d(),this.hoverState=null,this},c.prototype.fixTitle=function(){var a=this.$element;(a.attr(&amp;quot;title&amp;quot;)||&amp;quot;string&amp;quot;!=typeof a.attr(&amp;quot;data-original-title&amp;quot;))&amp;amp;&amp;amp;a.attr(&amp;quot;data-original-title&amp;quot;,a.attr(&amp;quot;title&amp;quot;)||&amp;quot;&amp;quot;).attr(&amp;quot;title&amp;quot;,&amp;quot;&amp;quot;)},c.prototype.hasContent=function(){return this.getTitle()},c.prototype.getPosition=function(b){b=b||this.$element;var c=b[0],d=&amp;quot;BODY&amp;quot;==c.tagName,e=c.getBoundingClientRect();null==e.width&amp;amp;&amp;amp;(e=a.extend({},e,{width:e.right-e.left,height:e.bottom-e.top}));var f=window.SVGElement&amp;amp;&amp;amp;c instanceof window.SVGElement,g=d?{top:0,left:0}:f?null:b.offset(),h={scroll:d?document.documentElement.scrollTop||document.body.scrollTop:b.scrollTop()},i=d?{width:a(window).width(),height:a(window).height()}:null;return a.extend({},e,h,i,g)},c.prototype.getCalculatedOffset=function(a,b,c,d){return&amp;quot;bottom&amp;quot;==a?{top:b.top+b.height,left:b.left+b.width/2-c/2}:&amp;quot;top&amp;quot;==a?{top:b.top-d,left:b.left+b.width/2-c/2}:&amp;quot;left&amp;quot;==a?{top:b.top+b.height/2-d/2,left:b.left-c}:{top:b.top+b.height/2-d/2,left:b.left+b.width}},c.prototype.getViewportAdjustedDelta=function(a,b,c,d){var e={top:0,left:0};if(!this.$viewport)return e;var f=this.options.viewport&amp;amp;&amp;amp;this.options.viewport.padding||0,g=this.getPosition(this.$viewport);if(/right|left/.test(a)){var h=b.top-f-g.scroll,i=b.top+f-g.scroll+d;h&amp;lt;g.top?e.top=g.top-h:i&amp;gt;g.top+g.height&amp;amp;&amp;amp;(e.top=g.top+g.height-i)}else{var j=b.left-f,k=b.left+f+c;j&amp;lt;g.left?e.left=g.left-j:k&amp;gt;g.right&amp;amp;&amp;amp;(e.left=g.left+g.width-k)}return e},c.prototype.getTitle=function(){var a,b=this.$element,c=this.options;return a=b.attr(&amp;quot;data-original-title&amp;quot;)||(&amp;quot;function&amp;quot;==typeof c.title?c.title.call(b[0]):c.title)},c.prototype.getUID=function(a){do a+=~~(1e6*Math.random());while(document.getElementById(a));return a},c.prototype.tip=function(){if(!this.$tip&amp;amp;&amp;amp;(this.$tip=a(this.options.template),1!=this.$tip.length))throw new Error(this.type+&amp;quot; &lt;code>template&lt;/code> option must consist of exactly 1 top-level element!&amp;quot;);return this.$tip},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(&amp;quot;.tooltip-arrow&amp;quot;)},c.prototype.enable=function(){this.enabled=!0},c.prototype.disable=function(){this.enabled=!1},c.prototype.toggleEnabled=function(){this.enabled=!this.enabled},c.prototype.toggle=function(b){var c=this;b&amp;amp;&amp;amp;(c=a(b.currentTarget).data(&amp;quot;bs.&amp;quot;+this.type),c||(c=new this.constructor(b.currentTarget,this.getDelegateOptions()),a(b.currentTarget).data(&amp;quot;bs.&amp;quot;+this.type,c))),b?(c.inState.click=!c.inState.click,c.isInStateTrue()?c.enter(c):c.leave(c)):c.tip().hasClass(&amp;quot;in&amp;quot;)?c.leave(c):c.enter(c)},c.prototype.destroy=function(){var a=this;clearTimeout(this.timeout),this.hide(function(){a.$element.off(&amp;quot;.&amp;quot;+a.type).removeData(&amp;quot;bs.&amp;quot;+a.type),a.$tip&amp;amp;&amp;amp;a.$tip.detach(),a.$tip=null,a.$arrow=null,a.$viewport=null,a.$element=null})};var d=a.fn.tooltip;a.fn.tooltip=b,a.fn.tooltip.Constructor=c,a.fn.tooltip.noConflict=function(){return a.fn.tooltip=d,this}}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.popover&amp;quot;),f=&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b;!e&amp;amp;&amp;amp;/destroy|hide/.test(b)||(e||d.data(&amp;quot;bs.popover&amp;quot;,e=new c(this,f)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;e&lt;a href="">b&lt;/a>)})}var c=function(a,b){this.init(&amp;quot;popover&amp;quot;,a,b)};if(!a.fn.tooltip)throw new Error(&amp;quot;Popover requires tooltip.js&amp;quot;);c.VERSION=&amp;quot;3.3.7&amp;quot;,c.DEFAULTS=a.extend({},a.fn.tooltip.Constructor.DEFAULTS,{placement:&amp;quot;right&amp;quot;,trigger:&amp;quot;click&amp;quot;,content:&amp;quot;&amp;quot;,template:'&amp;lt;div class=&amp;quot;popover&amp;quot; role=&amp;quot;tooltip&amp;quot;&amp;gt;&amp;lt;div class=&amp;quot;arrow&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;h3 class=&amp;quot;popover-title&amp;quot;&amp;gt;&amp;lt;/h3&amp;gt;&amp;lt;div class=&amp;quot;popover-content&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&amp;lt;/div&amp;gt;'}),c.prototype=a.extend({},a.fn.tooltip.Constructor.prototype),c.prototype.constructor=c,c.prototype.getDefaults=function(){return c.DEFAULTS},c.prototype.setContent=function(){var a=this.tip(),b=this.getTitle(),c=this.getContent();a.find(&amp;quot;.popover-title&amp;quot;)&lt;a href="b">this.options.html?&amp;quot;html&amp;quot;:&amp;quot;text&amp;quot;&lt;/a>,a.find(&amp;quot;.popover-content&amp;quot;).children().detach().end()&lt;a href="c">this.options.html?&amp;quot;string&amp;quot;==typeof c?&amp;quot;html&amp;quot;:&amp;quot;append&amp;quot;:&amp;quot;text&amp;quot;&lt;/a>,a.removeClass(&amp;quot;fade top bottom left right in&amp;quot;),a.find(&amp;quot;.popover-title&amp;quot;).html()||a.find(&amp;quot;.popover-title&amp;quot;).hide()},c.prototype.hasContent=function(){return this.getTitle()||this.getContent()},c.prototype.getContent=function(){var a=this.$element,b=this.options;return a.attr(&amp;quot;data-content&amp;quot;)||(&amp;quot;function&amp;quot;==typeof b.content?b.content.call(a[0]):b.content)},c.prototype.arrow=function(){return this.$arrow=this.$arrow||this.tip().find(&amp;quot;.arrow&amp;quot;)};var d=a.fn.popover;a.fn.popover=b,a.fn.popover.Constructor=c,a.fn.popover.noConflict=function(){return a.fn.popover=d,this}}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(c,d){this.$body=a(document.body),this.$scrollElement=a(a(c).is(document.body)?window:c),this.options=a.extend({},b.DEFAULTS,d),this.selector=(this.options.target||&amp;quot;&amp;quot;)+&amp;quot; .nav li &amp;gt; a&amp;quot;,this.offsets=[],this.targets=[],this.activeTarget=null,this.scrollHeight=0,this.$scrollElement.on(&amp;quot;scroll.bs.scrollspy&amp;quot;,a.proxy(this.process,this)),this.refresh(),this.process()}function c(c){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.scrollspy&amp;quot;),f=&amp;quot;object&amp;quot;==typeof c&amp;amp;&amp;amp;c;e||d.data(&amp;quot;bs.scrollspy&amp;quot;,e=new b(this,f)),&amp;quot;string&amp;quot;==typeof c&amp;amp;&amp;amp;e&lt;a href="">c&lt;/a>})}b.VERSION=&amp;quot;3.3.7&amp;quot;,b.DEFAULTS={offset:10},b.prototype.getScrollHeight=function(){return this.$scrollElement[0].scrollHeight||Math.max(this.$body[0].scrollHeight,document.documentElement.scrollHeight)},b.prototype.refresh=function(){var b=this,c=&amp;quot;offset&amp;quot;,d=0;this.offsets=[],this.targets=[],this.scrollHeight=this.getScrollHeight(),a.isWindow(this.$scrollElement[0])||(c=&amp;quot;position&amp;quot;,d=this.$scrollElement.scrollTop()),this.$body.find(this.selector).map(function(){var b=a(this),e=b.data(&amp;quot;target&amp;quot;)||b.attr(&amp;quot;href&amp;quot;),f=/^#./.test(e)&amp;amp;&amp;amp;a(e);return f&amp;amp;&amp;amp;f.length&amp;amp;&amp;amp;f.is(&amp;quot;:visible&amp;quot;)&amp;amp;&amp;amp;[[f&lt;a href="">c&lt;/a>.top+d,e]]||null}).sort(function(a,b){return a[0]-b[0]}).each(function(){b.offsets.push(this[0]),b.targets.push(this[1])})},b.prototype.process=function(){var a,b=this.$scrollElement.scrollTop()+this.options.offset,c=this.getScrollHeight(),d=this.options.offset+c-this.$scrollElement.height(),e=this.offsets,f=this.targets,g=this.activeTarget;if(this.scrollHeight!=c&amp;amp;&amp;amp;this.refresh(),b&amp;gt;=d)return g!=(a=f[f.length-1])&amp;amp;&amp;amp;this.activate(a);if(g&amp;amp;&amp;amp;b&amp;lt;e[0])return this.activeTarget=null,this.clear();for(a=e.length;a&amp;ndash;;)g!=f[a]&amp;amp;&amp;amp;b&amp;gt;=e[a]&amp;amp;&amp;amp;(void 0===e[a+1]||b&amp;lt;e[a+1])&amp;amp;&amp;amp;this.activate(f[a])},b.prototype.activate=function(b){
this.activeTarget=b,this.clear();var c=this.selector+'[data-target=&amp;quot;'+b+'&amp;quot;],'+this.selector+'[href=&amp;quot;'+b+'&amp;quot;]',d=a(c).parents(&amp;quot;li&amp;quot;).addClass(&amp;quot;active&amp;quot;);d.parent(&amp;quot;.dropdown-menu&amp;quot;).length&amp;amp;&amp;amp;(d=d.closest(&amp;quot;li.dropdown&amp;quot;).addClass(&amp;quot;active&amp;quot;)),d.trigger(&amp;quot;activate.bs.scrollspy&amp;quot;)},b.prototype.clear=function(){a(this.selector).parentsUntil(this.options.target,&amp;quot;.active&amp;quot;).removeClass(&amp;quot;active&amp;quot;)};var d=a.fn.scrollspy;a.fn.scrollspy=c,a.fn.scrollspy.Constructor=b,a.fn.scrollspy.noConflict=function(){return a.fn.scrollspy=d,this},a(window).on(&amp;quot;load.bs.scrollspy.data-api&amp;quot;,function(){a('[data-spy=&amp;quot;scroll&amp;quot;]').each(function(){var b=a(this);c.call(b,b.data())})})}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.tab&amp;quot;);e||d.data(&amp;quot;bs.tab&amp;quot;,e=new c(this)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;e&lt;a href="">b&lt;/a>})}var c=function(b){this.element=a(b)};c.VERSION=&amp;quot;3.3.7&amp;quot;,c.TRANSITION_DURATION=150,c.prototype.show=function(){var b=this.element,c=b.closest(&amp;quot;ul:not(.dropdown-menu)&amp;quot;),d=b.data(&amp;quot;target&amp;quot;);if(d||(d=b.attr(&amp;quot;href&amp;quot;),d=d&amp;amp;&amp;amp;d.replace(/.*(?=#[^\s]*$)/,&amp;quot;&amp;quot;)),!b.parent(&amp;quot;li&amp;quot;).hasClass(&amp;quot;active&amp;quot;)){var e=c.find(&amp;quot;.active:last a&amp;quot;),f=a.Event(&amp;quot;hide.bs.tab&amp;quot;,{relatedTarget:b[0]}),g=a.Event(&amp;quot;show.bs.tab&amp;quot;,{relatedTarget:e[0]});if(e.trigger(f),b.trigger(g),!g.isDefaultPrevented()&amp;amp;&amp;amp;!f.isDefaultPrevented()){var h=a(d);this.activate(b.closest(&amp;quot;li&amp;quot;),c),this.activate(h,h.parent(),function(){e.trigger({type:&amp;quot;hidden.bs.tab&amp;quot;,relatedTarget:b[0]}),b.trigger({type:&amp;quot;shown.bs.tab&amp;quot;,relatedTarget:e[0]})})}}},c.prototype.activate=function(b,d,e){function f(){g.removeClass(&amp;quot;active&amp;quot;).find(&amp;quot;&amp;gt; .dropdown-menu &amp;gt; .active&amp;quot;).removeClass(&amp;quot;active&amp;quot;).end().find('[data-toggle=&amp;quot;tab&amp;quot;]').attr(&amp;quot;aria-expanded&amp;quot;,!1),b.addClass(&amp;quot;active&amp;quot;).find('[data-toggle=&amp;quot;tab&amp;quot;]').attr(&amp;quot;aria-expanded&amp;quot;,!0),h?(b[0].offsetWidth,b.addClass(&amp;quot;in&amp;quot;)):b.removeClass(&amp;quot;fade&amp;quot;),b.parent(&amp;quot;.dropdown-menu&amp;quot;).length&amp;amp;&amp;amp;b.closest(&amp;quot;li.dropdown&amp;quot;).addClass(&amp;quot;active&amp;quot;).end().find('[data-toggle=&amp;quot;tab&amp;quot;]').attr(&amp;quot;aria-expanded&amp;quot;,!0),e&amp;amp;&amp;amp;e()}var g=d.find(&amp;quot;&amp;gt; .active&amp;quot;),h=e&amp;amp;&amp;amp;a.support.transition&amp;amp;&amp;amp;(g.length&amp;amp;&amp;amp;g.hasClass(&amp;quot;fade&amp;quot;)||!!d.find(&amp;quot;&amp;gt; .fade&amp;quot;).length);g.length&amp;amp;&amp;amp;h?g.one(&amp;quot;bsTransitionEnd&amp;quot;,f).emulateTransitionEnd(c.TRANSITION_DURATION):f(),g.removeClass(&amp;quot;in&amp;quot;)};var d=a.fn.tab;a.fn.tab=b,a.fn.tab.Constructor=c,a.fn.tab.noConflict=function(){return a.fn.tab=d,this};var e=function(c){c.preventDefault(),b.call(a(this),&amp;quot;show&amp;quot;)};a(document).on(&amp;quot;click.bs.tab.data-api&amp;quot;,'[data-toggle=&amp;quot;tab&amp;quot;]',e).on(&amp;quot;click.bs.tab.data-api&amp;quot;,'[data-toggle=&amp;quot;pill&amp;quot;]',e)}(jQuery),+function(a){&amp;quot;use strict&amp;quot;;function b(b){return this.each(function(){var d=a(this),e=d.data(&amp;quot;bs.affix&amp;quot;),f=&amp;quot;object&amp;quot;==typeof b&amp;amp;&amp;amp;b;e||d.data(&amp;quot;bs.affix&amp;quot;,e=new c(this,f)),&amp;quot;string&amp;quot;==typeof b&amp;amp;&amp;amp;e&lt;a href="">b&lt;/a>})}var c=function(b,d){this.options=a.extend({},c.DEFAULTS,d),this.$target=a(this.options.target).on(&amp;quot;scroll.bs.affix.data-api&amp;quot;,a.proxy(this.checkPosition,this)).on(&amp;quot;click.bs.affix.data-api&amp;quot;,a.proxy(this.checkPositionWithEventLoop,this)),this.$element=a(b),this.affixed=null,this.unpin=null,this.pinnedOffset=null,this.checkPosition()};c.VERSION=&amp;quot;3.3.7&amp;quot;,c.RESET=&amp;quot;affix affix-top affix-bottom&amp;quot;,c.DEFAULTS={offset:0,target:window},c.prototype.getState=function(a,b,c,d){var e=this.$target.scrollTop(),f=this.$element.offset(),g=this.$target.height();if(null!=c&amp;amp;&amp;amp;&amp;quot;top&amp;quot;==this.affixed)return e&amp;lt;c&amp;amp;&amp;amp;&amp;quot;top&amp;quot;;if(&amp;quot;bottom&amp;quot;==this.affixed)return null!=c?!(e+this.unpin&amp;lt;=f.top)&amp;amp;&amp;amp;&amp;quot;bottom&amp;quot;:!(e+g&amp;lt;=a-d)&amp;amp;&amp;amp;&amp;quot;bottom&amp;quot;;var h=null==this.affixed,i=h?e:f.top,j=h?g:b;return null!=c&amp;amp;&amp;amp;e&amp;lt;=c?&amp;quot;top&amp;quot;:null!=d&amp;amp;&amp;amp;i+j&amp;gt;=a-d&amp;amp;&amp;amp;&amp;quot;bottom&amp;quot;},c.prototype.getPinnedOffset=function(){if(this.pinnedOffset)return this.pinnedOffset;this.$element.removeClass(c.RESET).addClass(&amp;quot;affix&amp;quot;);var a=this.$target.scrollTop(),b=this.$element.offset();return this.pinnedOffset=b.top-a},c.prototype.checkPositionWithEventLoop=function(){setTimeout(a.proxy(this.checkPosition,this),1)},c.prototype.checkPosition=function(){if(this.$element.is(&amp;quot;:visible&amp;quot;)){var b=this.$element.height(),d=this.options.offset,e=d.top,f=d.bottom,g=Math.max(a(document).height(),a(document.body).height());&amp;quot;object&amp;quot;!=typeof d&amp;amp;&amp;amp;(f=e=d),&amp;quot;function&amp;quot;==typeof e&amp;amp;&amp;amp;(e=d.top(this.$element)),&amp;quot;function&amp;quot;==typeof f&amp;amp;&amp;amp;(f=d.bottom(this.$element));var h=this.getState(g,b,e,f);if(this.affixed!=h){null!=this.unpin&amp;amp;&amp;amp;this.$element.css(&amp;quot;top&amp;quot;,&amp;quot;&amp;quot;);var i=&amp;quot;affix&amp;quot;+(h?&amp;quot;-&amp;quot;+h:&amp;quot;&amp;quot;),j=a.Event(i+&amp;quot;.bs.affix&amp;quot;);if(this.$element.trigger(j),j.isDefaultPrevented())return;this.affixed=h,this.unpin=&amp;quot;bottom&amp;quot;==h?this.getPinnedOffset():null,this.$element.removeClass(c.RESET).addClass(i).trigger(i.replace(&amp;quot;affix&amp;quot;,&amp;quot;affixed&amp;quot;)+&amp;quot;.bs.affix&amp;quot;)}&amp;quot;bottom&amp;quot;==h&amp;amp;&amp;amp;this.$element.offset({top:g-b-f})}};var d=a.fn.affix;a.fn.affix=b,a.fn.affix.Constructor=c,a.fn.affix.noConflict=function(){return a.fn.affix=d,this},a(window).on(&amp;quot;load&amp;quot;,function(){a('[data-spy=&amp;quot;affix&amp;quot;]').each(function(){var c=a(this),d=c.data();d.offset=d.offset||{},null!=d.offsetBottom&amp;amp;&amp;amp;(d.offset.bottom=d.offsetBottom),null!=d.offsetTop&amp;amp;&amp;amp;(d.offset.top=d.offsetTop),b.call(c,d)})})}(jQuery); &amp;lt;/script&amp;gt;&amp;lt;script&amp;gt;
$(function () {
$('[data-toggle=&amp;quot;tooltip&amp;quot;]').tooltip();
});&lt;/li>
&lt;/ul>
&lt;p>$(&amp;quot;a[href^='#'].anchor&amp;quot;).on('click', function (e) {&lt;/p>
&lt;pre>&lt;code>// prevent default anchor click behavior
e.preventDefault();
// store hash
var hash = this.hash;
// animate
$(&amp;amp;#x27;html, body&amp;amp;#x27;).animate({
scrollTop: $(hash).offset().top
}, 300, function () {
// when done, add hash to url
// (default click behaviour)
window.location.hash = hash;
});
&lt;/code>&lt;/pre>
&lt;p>}); &amp;lt;/script&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&amp;quot; frameborder=&amp;ldquo;0&amp;rdquo; allowfullscreen&amp;gt;&lt;/iframe>&lt;/p>
&lt;h3 id="summary-of-profile-report-on-weather">Summary of profile report on weather.&lt;/h3>
&lt;ul>
&lt;li>&lt;code>wind_speed&lt;/code> and &lt;code>wind_gust&lt;/code> are highly positively correlated. As are all the temperature variables, &lt;code>temp_max&lt;/code>, &lt;code>temp_min&lt;/code>, &lt;code>temp_ave&lt;/code>. &lt;br />&lt;/li>
&lt;li>Precipitation (&lt;code>ppt&lt;/code>) has a very skewed distribution and 48% of the data is zero. The two snow variables, &lt;code>new_snow&lt;/code> and &lt;code>snow_depth&lt;/code> have 92% zeros in their data columns. &lt;br />&lt;/li>
&lt;li>Wind direction has a bimodal distribution. &lt;br />&lt;/li>
&lt;/ul>
&lt;p>24% of the flights are delayed and 76% of the flights are not delayed.&lt;/p>
&lt;h2 id="investigating-plane-information">Investigating plane information&lt;/h2>
&lt;p>A pandas profiling report was also run for plane information. (see &lt;a href="https://github.com/axbraae/final_project/tree/main/analysis" target="_blank" rel="noopener">code&lt;/a>)&lt;/p>
&lt;h3 id="summary-of-profile-report-on-plane-information">Summary of profile report on plane information&lt;/h3>
&lt;ul>
&lt;li>The &lt;code>type&lt;/code> variable is highly correlated with &lt;code>manufacturer&lt;/code> and &lt;code>engine&lt;/code>, remove this variable. &lt;br />&lt;/li>
&lt;li>The &lt;code>manufacturer&lt;/code> variable has high cardinality (lots of different categories). Recode this to the top 5 manufacturers, recode NaNs to unknown and set the rest to other.&lt;/li>
&lt;/ul>
&lt;h1 id="feature-engineering-and-data-wrangling">Feature engineering and data wrangling&lt;/h1>
&lt;p>Random forest is known to be a good model for flight delay data. I will prepare the data for this model.&lt;/p>
&lt;h2 id="feature-engineering">Feature engineering&lt;/h2>
&lt;p>The following features will be changed.&lt;/p>
&lt;ul>
&lt;li>convert &lt;code>wind_speed&lt;/code> into a categorical &lt;code>wind_scale&lt;/code> using the Beaufort scale&lt;/li>
&lt;li>drop columns with high correlation identified in pandas profiling report (&lt;code>wind_gust&lt;/code>, &lt;code>temp_max&lt;/code>, &lt;code>temp_min&lt;/code>)&lt;/li>
&lt;li>remove &lt;code>type&lt;/code>&lt;/li>
&lt;li>recode &lt;code>manufacturer&lt;/code> to the top 5 manufacturers, recode NaNs to unknown and set the rest to other&lt;/li>
&lt;li>recode &lt;code>hour&lt;/code>, &lt;code>month&lt;/code> and &lt;code>day&lt;/code> as categorical variables&lt;/li>
&lt;li>remove other columns not thought to be important for flight delay model (keep &lt;code>dest_airport&lt;/code>): &lt;br />
&lt;code>dest_timezone&lt;/code>, &lt;code>dest_alt&lt;/code>, &lt;code>dest_lon&lt;/code>, &lt;code>dest_lat&lt;/code>, &lt;code>dest_faa&lt;/code>, &lt;code>ori_timezone&lt;/code>, &lt;code>ori_lat&lt;/code>, &lt;code>ori_lon&lt;/code>, &lt;br /> &lt;code>ori_airport&lt;/code>, &lt;code>ori_faa&lt;/code>, &lt;code>time_hour&lt;/code>, &lt;code>minute&lt;/code>, &lt;code>hour&lt;/code>, &lt;code>dest&lt;/code>, &lt;code>tailnum&lt;/code>, &lt;code>flight&lt;/code>, &lt;code>carrier&lt;/code>, &lt;code>arr_delay&lt;/code>, &lt;br />
&lt;code>sched_arr_time&lt;/code>, &lt;code>arr_time&lt;/code>, &lt;code>dep_delay&lt;/code>, &lt;code>sched_dep_time&lt;/code>, &lt;code>dep_time&lt;/code>, &lt;code>day&lt;/code>.&lt;/li>
&lt;/ul>
&lt;h3 id="convert-weather-data-types">Convert weather data types&lt;/h3>
&lt;pre>&lt;code class="language-python"># add categorical wind_scale for wind_speed
wind_labels = ['Calm', 'Light Breeze', 'Gentle Breeze',
'Moderate Breeze', 'Fresh Breeze', 'Strong Breeze', 'Near Gale',
'Gale']
wind_bins = [0, 3, 7, 12, 18, 24, 31, 38, 46]
flights_all['wind_scale'] = pd.cut(flights_all['wind_speed'],
bins = wind_bins, labels=wind_labels,
include_lowest = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">weather_drop = ['wind_gust', 'temp_max', 'temp_min']
flights_all_trim = flights_all.drop(columns=weather_drop)
&lt;/code>&lt;/pre>
&lt;h3 id="convert-plane-data-types">Convert plane data types&lt;/h3>
&lt;pre>&lt;code class="language-python">flights_all_trim.drop(columns=['type', 'model'], inplace = True)
man_keep = ['Unknown', 'BOEING', 'AIRBUS', 'AIRBUS INDUSTRIE',
'EMBRAER', 'BOMBARDIER INC', 'MCDONNELL DOUGLAS AIRCRAFT CO', 'MCDONNELL DOUGLAS']
flights_all_trim.manufacturer = np.where(flights_all_trim.manufacturer.isin(man_keep),
flights_all_trim.manufacturer, 'Other')
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">#fix manufacturer doubling for airbus and mcdonnell douglas
flights_all_trim.manufacturer = flights_all_trim.manufacturer.map({
'AIRBUS INDUSTRIE': 'AIRBUS',
'AIRBUS': 'AIRBUS',
'MCDONNELL DOUGLAS': 'MCDONNELL DOUGLAS',
'MCDONNELL DOUGLAS AIRCRAFT CO': 'MCDONNELL DOUGLAS',
'BOEING': 'BOEING',
'EMBRAER': 'EMBRAER',
'BOMBARDIER INC': 'BOMBARDIER INC',
'Unknown': 'Unknown',
'Other': 'Other'})
flights_all_trim.head()
&lt;/code>&lt;/pre>
&lt;div>
&lt;style scoped>
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
&lt;pre>&lt;code>.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
&lt;/code>&lt;/pre>
&lt;p>&lt;/style>&lt;/p>
&lt;table border="1" class="dataframe">
&lt;thead>
&lt;tr style="text-align: right;">
&lt;th>&lt;/th>
&lt;th>month&lt;/th>
&lt;th>day&lt;/th>
&lt;th>dep_time&lt;/th>
&lt;th>sched_dep_time&lt;/th>
&lt;th>dep_delay&lt;/th>
&lt;th>arr_time&lt;/th>
&lt;th>sched_arr_time&lt;/th>
&lt;th>arr_delay&lt;/th>
&lt;th>carrier&lt;/th>
&lt;th>flight&lt;/th>
&lt;th>...&lt;/th>
&lt;th>dest_faa&lt;/th>
&lt;th>dest_airport&lt;/th>
&lt;th>dest_lat&lt;/th>
&lt;th>dest_lon&lt;/th>
&lt;th>dest_alt&lt;/th>
&lt;th>dest_timezone&lt;/th>
&lt;th>carrier_name&lt;/th>
&lt;th>manufacturer&lt;/th>
&lt;th>engine&lt;/th>
&lt;th>wind_scale&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;th>0&lt;/th>
&lt;td>1&lt;/td>
&lt;td>1&lt;/td>
&lt;td>545.0&lt;/td>
&lt;td>545&lt;/td>
&lt;td>0.0&lt;/td>
&lt;td>833.0&lt;/td>
&lt;td>831&lt;/td>
&lt;td>2.0&lt;/td>
&lt;td>B6&lt;/td>
&lt;td>527&lt;/td>
&lt;td>...&lt;/td>
&lt;td>MCO&lt;/td>
&lt;td>Orlando International Airport&lt;/td>
&lt;td>28.429399&lt;/td>
&lt;td>-81.308998&lt;/td>
&lt;td>96.0&lt;/td>
&lt;td>America/New_York&lt;/td>
&lt;td>JetBlue Airways&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>1&lt;/th>
&lt;td>1&lt;/td>
&lt;td>1&lt;/td>
&lt;td>556.0&lt;/td>
&lt;td>555&lt;/td>
&lt;td>1.0&lt;/td>
&lt;td>709.0&lt;/td>
&lt;td>714&lt;/td>
&lt;td>-5.0&lt;/td>
&lt;td>UA&lt;/td>
&lt;td>320&lt;/td>
&lt;td>...&lt;/td>
&lt;td>IAD&lt;/td>
&lt;td>Washington Dulles International Airport&lt;/td>
&lt;td>38.944500&lt;/td>
&lt;td>-77.455803&lt;/td>
&lt;td>312.0&lt;/td>
&lt;td>America/New_York&lt;/td>
&lt;td>United Air Lines Inc.&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>2&lt;/th>
&lt;td>1&lt;/td>
&lt;td>1&lt;/td>
&lt;td>559.0&lt;/td>
&lt;td>600&lt;/td>
&lt;td>-1.0&lt;/td>
&lt;td>848.0&lt;/td>
&lt;td>904&lt;/td>
&lt;td>-16.0&lt;/td>
&lt;td>AA&lt;/td>
&lt;td>1301&lt;/td>
&lt;td>...&lt;/td>
&lt;td>MIA&lt;/td>
&lt;td>Miami International Airport&lt;/td>
&lt;td>25.793200&lt;/td>
&lt;td>-80.290604&lt;/td>
&lt;td>8.0&lt;/td>
&lt;td>America/New_York&lt;/td>
&lt;td>American Airlines Inc.&lt;/td>
&lt;td>Unknown&lt;/td>
&lt;td>Unknown&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>3&lt;/th>
&lt;td>1&lt;/td>
&lt;td>1&lt;/td>
&lt;td>557.0&lt;/td>
&lt;td>600&lt;/td>
&lt;td>-3.0&lt;/td>
&lt;td>853.0&lt;/td>
&lt;td>903&lt;/td>
&lt;td>-10.0&lt;/td>
&lt;td>B6&lt;/td>
&lt;td>605&lt;/td>
&lt;td>...&lt;/td>
&lt;td>FLL&lt;/td>
&lt;td>Fort Lauderdale Hollywood International Airport&lt;/td>
&lt;td>26.072599&lt;/td>
&lt;td>-80.152702&lt;/td>
&lt;td>9.0&lt;/td>
&lt;td>America/New_York&lt;/td>
&lt;td>JetBlue Airways&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;/tr>
&lt;tr>
&lt;th>4&lt;/th>
&lt;td>1&lt;/td>
&lt;td>1&lt;/td>
&lt;td>731.0&lt;/td>
&lt;td>655&lt;/td>
&lt;td>36.0&lt;/td>
&lt;td>830.0&lt;/td>
&lt;td>808&lt;/td>
&lt;td>22.0&lt;/td>
&lt;td>UA&lt;/td>
&lt;td>2016&lt;/td>
&lt;td>...&lt;/td>
&lt;td>BOS&lt;/td>
&lt;td>General Edward Lawrence Logan International Ai...&lt;/td>
&lt;td>42.364300&lt;/td>
&lt;td>-71.005203&lt;/td>
&lt;td>20.0&lt;/td>
&lt;td>America/New_York&lt;/td>
&lt;td>United Air Lines Inc.&lt;/td>
&lt;td>AIRBUS&lt;/td>
&lt;td>Turbo-fan&lt;/td>
&lt;td>Gentle Breeze&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>5 rows × 43 columns&lt;/p>
&lt;/div>
&lt;pre>&lt;code class="language-python">flights_all_trim.shape
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>(294167, 43)
&lt;/code>&lt;/pre>
&lt;h3 id="convert-timeseries-data-into-categories">Convert timeseries data into categories&lt;/h3>
&lt;pre>&lt;code class="language-python">flights_all_trim['month_flag'] = flights_all_trim.month.astype(str)
flights_all_trim['month_flag'] = flights_all_trim['month_flag'].map({
'1': 'Jan',
'2': 'Feb',
'3': 'Mar',
'4': 'Apr',
'5': 'May',
'6': 'Jun',
'7': 'Jul',
'8': 'Aug',
'9': 'Sep',
'10': 'Oct',
'11': 'Nov',
'12': 'Dec'})
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">flights_all_trim.loc[:, 'time_hour'] = pd.to_datetime(flights_all_trim.time_hour, yearfirst=True)
flights_all_trim['weekday'] = flights_all_trim['time_hour'].dt.day_name()
flights_all_trim['hour'] = pd.Categorical(flights_all_trim['hour'], ordered = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">to_drop=['dest_timezone', 'ori_alt', 'dest_lon', 'dest_lat', 'dest_faa',
'ori_timezone', 'ori_lat', 'ori_lon', 'ori_airport', 'ori_faa', 'time_hour',
'minute', 'dest', 'tailnum', 'flight', 'carrier', 'arr_delay', 'sched_arr_time',
'arr_time', 'dep_delay', 'month', 'sched_dep_time','dep_time', 'day']
flights_model_data = flights_all_trim.drop(columns=to_drop)
&lt;/code>&lt;/pre>
&lt;p>Remove data for EWR (Newark) - save the rest of the data for future work, can run the model on the data for the other airports to see how it performs&lt;/p>
&lt;pre>&lt;code class="language-python"># split into EWR, and the others
ewr_model_data = flights_model_data.loc[(flights_model_data['origin'] == 'EWR')].copy()
&lt;/code>&lt;/pre>
&lt;h1 id="exploratory-data-analysis">Exploratory Data Analysis&lt;/h1>
&lt;p>I will start with an overview of departure delays across all airports and then move to delays at EWR, focusing on weather and other factors.&lt;/p>
&lt;pre>&lt;code class="language-python"># set figure sizes for all plots
plt.rcParams['figure.figsize'] = [5, 3]
plt.rcParams['figure.dpi'] = 120
plt.rcParams['font.size'] = 10
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">flights_all_trim.loc[:, 'dep_delay_count'] = flights_all_trim.groupby(['origin', 'month']).dep_delay_true.transform('sum')
flights_all_trim.loc[:, 'total_flight_count'] = flights_all_trim.groupby(['origin', 'month']).dep_delay.transform('count')
flights_all_trim.loc[:, 'percent_delay'] = (flights_all_trim.dep_delay_count / flights_all_trim.total_flight_count) * 100
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">hue_order = ['EWR', 'JFK', 'LGA']
all_flights_pal = sns.color_palette(['#005083', '#6876a4', '#ffd28f'])
sns.barplot(
x = 'month_flag', y = 'total_flight_count',
hue = 'origin', palette = all_flights_pal,
hue_order = hue_order, data = flights_all_trim)
plt.title(&amp;quot;Total flights per month for NY airports in 2017&amp;quot;)
plt.xlabel(&amp;quot;Month&amp;quot;)
plt.ylabel(&amp;quot;Total flights&amp;quot;)
plt.legend(bbox_to_anchor=(1.01, 1), loc = 2,
borderaxespad=0)
plt.tight_layout()
plt.savefig('figures/all_airports_total_plot.png', pad_inches=0.5);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_32_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.barplot(
x = 'month_flag', y = 'percent_delay',
hue = 'origin', hue_order = hue_order,
palette = all_flights_pal, data = flights_all_trim)
plt.title(&amp;quot;Delayed flights for NY airports in 2017&amp;quot;)
plt.xlabel(&amp;quot;Month&amp;quot;)
plt.ylabel(&amp;quot;Percentage of delayed flights&amp;quot;)
plt.legend(bbox_to_anchor=(1.01, 1), loc = 2,
borderaxespad=0)
plt.tight_layout()
plt.savefig('figures/all_airports_delays_plot.png', pad_inches=0.5);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_33_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.pairplot(ewr_model_data,
x_vars=['air_time', 'distance', 'dest_alt'],
y_vars=['air_time', 'distance', 'carrier_name', 'dest_alt'],
hue = 'dep_delay_true',
corner = True);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_34_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">ewr_all = flights_all_trim.loc[(flights_all_trim['origin'] == 'EWR')].copy().reset_index(drop = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># function to create a column with percentage of delayed flights per grouping column (col)
def percent_delay(col):
ewr_all.loc[:, 'dep_delay_per_'+ col] = ewr_all.groupby([col]).dep_delay_true.transform('sum')
ewr_all.loc[:, 'total_flights_per_' + col] = ewr_all.groupby([col]).dep_delay.transform('count')
ewr_all.loc[:, 'percent_delay_per_' + col] = (ewr_all['dep_delay_per_'+ col] / ewr_all['total_flights_per_' + col]) * 100
&lt;/code>&lt;/pre>
&lt;h2 id="eda-weather-and-flight-delays">EDA weather and flight delays&lt;/h2>
&lt;pre>&lt;code class="language-python"># set custom graph options
line_pal = sns.color_palette(['#f9ab00', '#49006a'])
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">visib_plot = sns.lineplot(
x = 'month_flag',
y = 'visib',
hue = 'dep_delay_true',
marker = 'o',
ci = False,
palette = line_pal,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Visibility (miles)')
plt.title('Average monthly visibility for departures')
plt.legend(title='', labels=['On time', 'Delayed'])
plt.tight_layout()
plt.savefig('figures/visib_plot.png', pad_inches=0.5);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_39_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'ppt',
hue = 'dep_delay_true',
marker='o',
palette = line_pal,
ci=False,
legend=False,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Rainfall (inches)')
plt.title('Average monthly rainfall for departures')
#plt.legend(title='', labels=['Not delayed', 'Delayed'])
plt.tight_layout()
plt.savefig('figures/ppt_plot.png', pad_inches=0.5);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_40_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'wind_speed',
hue = 'dep_delay_true',
marker='o',
palette = line_pal,
ci = False,
legend = False,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Wind speed (mph)')
plt.title('Average monthly windspeed for departures')
#plt.legend(title='', labels=['Not delayed', 'Delayed'])
plt.tight_layout()
plt.savefig('figures/windspeed_plot.png', pad_inches=0.5);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_41_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'wind_dir',
hue = 'dep_delay_true',
marker='o',
palette = line_pal,
ci = False,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Wind direction (degrees)')
plt.title('Average monthly wind direction for departures')
plt.legend(title='', labels=['On-time', 'Delayed'])
plt.tight_layout()
plt.savefig('figures/wind_dir_plot.png', pad_inches=0.7);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_42_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'temp_departure',
hue = 'dep_delay_true',
marker='o',
palette = line_pal,
data = ewr_all)
plt.xticks(rotation=90)
plt.legend(title='Departure Delay', labels=['No', 'Yes']);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_43_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'temp_ave',
marker = 'o',
hue = 'dep_delay_true',
palette = line_pal,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Temperature (F)')
plt.title('Average monthly temperature for departures')
plt.legend(title='', labels=['On-time', 'Delayed'])
plt.tight_layout()
plt.savefig('./figures/ave_temp_plot.png', pad_inches=0.7);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_44_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'snow_depth',
marker='o',
hue = 'dep_delay_true',
palette = line_pal,
ci = False,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Snow depth (inches)')
plt.title('Depth of snow per month for Newark departures')
plt.legend(title='', labels=['Not delayed', 'Delayed']);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_45_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">sns.lineplot(x = 'month_flag',
y = 'new_snow',
hue = 'dep_delay_true',
marker='o',
palette = line_pal,
ci = False,
data = ewr_all)
plt.xticks(rotation=90)
plt.xlabel('Month')
plt.ylabel('Amount of new snow (inches)')
plt.title('Snowfall per month for Newark departures')
plt.legend(title='', labels=['Not delayed', 'Delayed']);
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_46_0.png" alt="png">&lt;/p>
&lt;h3 id="summary">Summary&lt;/h3>
&lt;ul>
&lt;li>
&lt;p>Weather which affects departure delays year round includes &lt;code>wind_speed&lt;/code>, &lt;code>rainfall&lt;/code>, &lt;code>wind_direction&lt;/code> and &lt;code>visib&lt;/code> (visibility).&lt;/p>
&lt;/li>
&lt;li>
&lt;p>For the winter months, &lt;code>new_snow&lt;/code> and &lt;code>snow_depth&lt;/code> impact on flight delays.&lt;/p>
&lt;/li>
&lt;/ul>
&lt;p>For the business presentation, graphs were selected which show differences in flight delays over different months.&lt;/p>
&lt;h2 id="eda-for-other-reasons-for-delays">EDA for other reasons for delays&lt;/h2>
&lt;h3 id="carrier-delays">Carrier delays&lt;/h3>
&lt;pre>&lt;code class="language-python">percent_delay('carrier_name')
carrier = ewr_all.drop_duplicates(subset=['carrier_name']).reset_index(drop = True)
ordered_data = carrier.sort_values('percent_delay_per_carrier_name').carrier_name
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">sns.barplot(
x = 'carrier_name',
y = 'percent_delay_per_carrier_name',
color = '#0868ac',
order = ordered_data,
data = carrier)
plt.xticks(rotation=90)
plt.xlabel('')
plt.ylabel('Delayed flights (%)')
plt.title('Delays per airline carrier')
plt.tight_layout()
plt.subplots_adjust(bottom=0.15)
plt.savefig('figures/carrier_delays_plot.png', dpi = 400, pad_inches=0.85, bbox_inches='tight');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_51_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">percent_delay('weekday')
sns.barplot(y = 'percent_delay_per_weekday',
x = 'weekday',
color = '#7fcdbb',
data = ewr_all)
plt.xticks(rotation=90)
plt.ylabel('Delayed flights (%)')
plt.xlabel('')
plt.title('Delays per day of the week')
plt.tight_layout()
plt.subplots_adjust(bottom=0.15)
plt.savefig('figures/weekdays_plot.png', dpi = 400, pad_inches=0.85, bbox_inches='tight');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_52_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">percent_delay('hour')
sns.barplot(
y = 'percent_delay_per_hour',
x = 'hour',
color = '#41b6c4',
data = ewr_all)
plt.xticks([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19],
['1am', '5am', '6am', '7am', '8am', '9am',
'10am', '11am', '12am', '1pm', '2pm', '3pm',
'4pm', '5pm', '6pm', '7pm', '8pm', '9pm', '10pm', '11pm'],
rotation=90)
plt.ylabel('Delayed flights (%)')
plt.xlabel('Hour')
plt.title('Delays per hour')
plt.tight_layout()
plt.subplots_adjust(bottom=0.15)
plt.savefig('figures/hour_plot.png', dpi = 400, pad_inches=0.85, bbox_inches='tight');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_53_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">percent_delay('manufacturer')
#8c96c6
sns.barplot(y = 'percent_delay_per_manufacturer',
x = 'manufacturer',
color = '#3b528b',
data = ewr_all)
plt.xticks(rotation=90)
plt.ylabel('Delayed flights (%)')
plt.xlabel('')
plt.title('Delays per manufacturer')
plt.tight_layout()
plt.subplots_adjust(bottom=0.15)
plt.savefig('figures/manufacturer_plot.png', dpi = 400, pad_inches=0.85, bbox_inches='tight');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_54_0.png" alt="png">&lt;/p>
&lt;pre>&lt;code class="language-python">percent_delay('engine')
sns.barplot(y = 'percent_delay_per_engine',
x = 'engine',
color = '#8c6bb1',
data = ewr_all)
plt.xticks(rotation=90)
plt.ylabel('Delayed flights (%)')
plt.xlabel('')
plt.title('Delays per type of plane engine')
plt.tight_layout()
plt.subplots_adjust(bottom=0.15)
plt.savefig('figures/engine_plot.png', dpi = 400, pad_inches=0.85, bbox_inches='tight');
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="output_55_0.png" alt="png">&lt;/p>
&lt;h3 id="summary-1">Summary&lt;/h3>
&lt;ul>
&lt;li>
&lt;p>Many other factors are also involved in departure delays.&lt;/p>
&lt;/li>
&lt;li>
&lt;p>Airline carrier, time and month of departure and plane engine show the most variation in terms of total percentage flights which were delayed.&lt;/p>
&lt;/li>
&lt;/ul>
&lt;h2 id="geospatial-data-exploration">Geospatial data exploration&lt;/h2>
&lt;p>The data per destination airport needs to be summarised so that it can be plotted on a map.&lt;/p>
&lt;p>There are 88 different destination airports in total, all domestic (US).&lt;/p>
&lt;p>Possible useful summary visuals:&lt;/p>
&lt;ul>
&lt;li>percentage delayed flights per destination airport sized by total number of flights&lt;/li>
&lt;li>percentage delayed flights per destination airport coloured/sized by delay time&lt;/li>
&lt;li>percentage delayed flights selecting top 5 delayed airlines on the route&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-python"># select all columns useful for geospatial analysis
ewr_geo = ewr_flights.loc[:, ['ori_airport', 'ori_lat', 'ori_lon',
'ori_alt','dest_airport', 'dest_lat', 'dest_lon', 'carrier_name', 'dep_delay',
'dep_delay_true', 'air_time', 'distance', 'hour', 'wind_speed', 'visib']].copy()
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># generate percentage delay column per destination for plotting
ewr_geo.loc[:, 'dep_delay_count'] = ewr_geo.groupby(['dest_airport']).dep_delay_true.transform('sum')
ewr_geo.loc[:, 'total_flights_per_dest_airport'] = ewr_geo.groupby(['dest_airport']).dep_delay.transform('count')
ewr_geo.loc[:, 'percent_delay_per_dest_airport'] = (ewr_geo.dep_delay_count / ewr_geo.total_flights_per_dest_airport) * 100
ewr_unique_dest = ewr_geo.drop_duplicates(['dest_airport', 'percent_delay_per_dest_airport']).reset_index(drop = True)
ewr_unique_dest['percent_delay_per_dest_airport'] = ewr_unique_dest['percent_delay_per_dest_airport'].round()
ewr_unique_dest.dropna(inplace = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># remove unwanted columns
ewr_unique_dest = ewr_unique_dest.loc[:, ['ori_airport', 'ori_lat', 'ori_lon',
'dest_airport', 'dest_lat', 'dest_lon', 'total_flights_per_dest_airport',
'percent_delay_per_dest_airport']].copy()
ewr_unique_dest = ewr_unique_dest.reset_index(drop = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># scale total flights to a value between 1 and 20 for plotting
ewr_unique_dest['scaled_flights_per_dest'] = \
1 + (ewr_unique_dest['total_flights_per_dest_airport'] - \
ewr_unique_dest['total_flights_per_dest_airport'].min())\
/(ewr_unique_dest['total_flights_per_dest_airport'].max() - \
ewr_unique_dest['total_flights_per_dest_airport'].min())\
* 19
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># make a color column in the dataset to iterate through in the below folium script
# bin percent delay into 9 and 5
color_hex_labels= ['#f7fcfd', '#e0ecf4', '#bfd3e6',
'#9ebcda', '#8c96c6', '#8c6bb1', '#88419d',
'#810f7c', '#4d004b']
ewr_unique_dest['color_hex_delay'] = pd.cut(ewr_unique_dest['percent_delay_per_dest_airport'],
bins = 9, labels=color_hex_labels,
include_lowest = True)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python">us_map = folium.Map(location=[40.6925, -74.1687],
zoom_start = 5,
tiles=&amp;quot;cartodbpositron&amp;quot;)
#iterrows returns index (stored in _) and row which we need
for _, row in ewr_unique_dest.iterrows():
folium.CircleMarker([row['ori_lat'], row['ori_lon']],
radius=5,
fill_color='#005083', # ewr airport colour
stroke=False,
fill_opacity = 1
).add_to(us_map)
folium.CircleMarker([row['dest_lat'], row['dest_lon']],
radius=10,
fill_color=[row['color_hex_delay']], # destination colour
stroke=False,
fill_opacity = 1
).add_to(us_map)
folium.PolyLine([[row['ori_lat'], row['ori_lon']],
[row['dest_lat'], row['dest_lon']]],
color = 'black',
weight= [row['scaled_flights_per_dest']], # size line on total flights
opacity = 0.1
).add_to(us_map)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-python"># create legend for map
legend = branca.colormap.StepColormap(['#f7fcfd', '#e0ecf4', '#bfd3e6',
'#9ebcda', '#8c96c6', '#8c6bb1', '#88419d',
'#810f7c', '#4d004b'],
vmin=6, vmax=54, index=[6, 11, 16, 22, 27, 32, 38, 43, 48, 54],
caption='Percentage of delayed flights')
legend.add_to(us_map)
&lt;/code>&lt;/pre>
&lt;p>&lt;svg height="50" width="500">&lt;line x1="0" y1="0" x2="0" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="1" y1="0" x2="1" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="2" y1="0" x2="2" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="3" y1="0" x2="3" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="4" y1="0" x2="4" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="5" y1="0" x2="5" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="6" y1="0" x2="6" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="7" y1="0" x2="7" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="8" y1="0" x2="8" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="9" y1="0" x2="9" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="10" y1="0" x2="10" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="11" y1="0" x2="11" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="12" y1="0" x2="12" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="13" y1="0" x2="13" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="14" y1="0" x2="14" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="15" y1="0" x2="15" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="16" y1="0" x2="16" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="17" y1="0" x2="17" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="18" y1="0" x2="18" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="19" y1="0" x2="19" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="20" y1="0" x2="20" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="21" y1="0" x2="21" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="22" y1="0" x2="22" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="23" y1="0" x2="23" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="24" y1="0" x2="24" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="25" y1="0" x2="25" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="26" y1="0" x2="26" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="27" y1="0" x2="27" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="28" y1="0" x2="28" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="29" y1="0" x2="29" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="30" y1="0" x2="30" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="31" y1="0" x2="31" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="32" y1="0" x2="32" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="33" y1="0" x2="33" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="34" y1="0" x2="34" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="35" y1="0" x2="35" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="36" y1="0" x2="36" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="37" y1="0" x2="37" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="38" y1="0" x2="38" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="39" y1="0" x2="39" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="40" y1="0" x2="40" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="41" y1="0" x2="41" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="42" y1="0" x2="42" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="43" y1="0" x2="43" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="44" y1="0" x2="44" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="45" y1="0" x2="45" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="46" y1="0" x2="46" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="47" y1="0" x2="47" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="48" y1="0" x2="48" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="49" y1="0" x2="49" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="50" y1="0" x2="50" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="51" y1="0" x2="51" y2="20" style="stroke:#f7fcfdff;stroke-width:3;" />&lt;line x1="52" y1="0" x2="52" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="53" y1="0" x2="53" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="54" y1="0" x2="54" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="55" y1="0" x2="55" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="56" y1="0" x2="56" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="57" y1="0" x2="57" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="58" y1="0" x2="58" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="59" y1="0" x2="59" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="60" y1="0" x2="60" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="61" y1="0" x2="61" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="62" y1="0" x2="62" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="63" y1="0" x2="63" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="64" y1="0" x2="64" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="65" y1="0" x2="65" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="66" y1="0" x2="66" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="67" y1="0" x2="67" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="68" y1="0" x2="68" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="69" y1="0" x2="69" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="70" y1="0" x2="70" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="71" y1="0" x2="71" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="72" y1="0" x2="72" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="73" y1="0" x2="73" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="74" y1="0" x2="74" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="75" y1="0" x2="75" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="76" y1="0" x2="76" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="77" y1="0" x2="77" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="78" y1="0" x2="78" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="79" y1="0" x2="79" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="80" y1="0" x2="80" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="81" y1="0" x2="81" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="82" y1="0" x2="82" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="83" y1="0" x2="83" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="84" y1="0" x2="84" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="85" y1="0" x2="85" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="86" y1="0" x2="86" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="87" y1="0" x2="87" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="88" y1="0" x2="88" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="89" y1="0" x2="89" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="90" y1="0" x2="90" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="91" y1="0" x2="91" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="92" y1="0" x2="92" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="93" y1="0" x2="93" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="94" y1="0" x2="94" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="95" y1="0" x2="95" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="96" y1="0" x2="96" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="97" y1="0" x2="97" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="98" y1="0" x2="98" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="99" y1="0" x2="99" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="100" y1="0" x2="100" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="101" y1="0" x2="101" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="102" y1="0" x2="102" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="103" y1="0" x2="103" y2="20" style="stroke:#e0ecf4ff;stroke-width:3;" />&lt;line x1="104" y1="0" x2="104" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="105" y1="0" x2="105" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="106" y1="0" x2="106" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="107" y1="0" x2="107" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="108" y1="0" x2="108" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="109" y1="0" x2="109" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="110" y1="0" x2="110" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="111" y1="0" x2="111" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="112" y1="0" x2="112" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="113" y1="0" x2="113" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="114" y1="0" x2="114" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="115" y1="0" x2="115" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="116" y1="0" x2="116" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="117" y1="0" x2="117" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="118" y1="0" x2="118" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="119" y1="0" x2="119" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="120" y1="0" x2="120" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="121" y1="0" x2="121" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="122" y1="0" x2="122" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="123" y1="0" x2="123" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="124" y1="0" x2="124" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="125" y1="0" x2="125" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="126" y1="0" x2="126" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="127" y1="0" x2="127" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="128" y1="0" x2="128" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="129" y1="0" x2="129" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="130" y1="0" x2="130" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="131" y1="0" x2="131" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="132" y1="0" x2="132" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="133" y1="0" x2="133" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="134" y1="0" x2="134" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="135" y1="0" x2="135" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="136" y1="0" x2="136" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="137" y1="0" x2="137" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="138" y1="0" x2="138" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="139" y1="0" x2="139" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="140" y1="0" x2="140" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="141" y1="0" x2="141" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="142" y1="0" x2="142" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="143" y1="0" x2="143" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="144" y1="0" x2="144" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="145" y1="0" x2="145" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="146" y1="0" x2="146" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="147" y1="0" x2="147" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="148" y1="0" x2="148" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="149" y1="0" x2="149" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="150" y1="0" x2="150" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="151" y1="0" x2="151" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="152" y1="0" x2="152" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="153" y1="0" x2="153" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="154" y1="0" x2="154" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="155" y1="0" x2="155" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="156" y1="0" x2="156" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="157" y1="0" x2="157" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="158" y1="0" x2="158" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="159" y1="0" x2="159" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="160" y1="0" x2="160" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="161" y1="0" x2="161" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="162" y1="0" x2="162" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="163" y1="0" x2="163" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="164" y1="0" x2="164" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="165" y1="0" x2="165" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="166" y1="0" x2="166" y2="20" style="stroke:#bfd3e6ff;stroke-width:3;" />&lt;line x1="167" y1="0" x2="167" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="168" y1="0" x2="168" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="169" y1="0" x2="169" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="170" y1="0" x2="170" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="171" y1="0" x2="171" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="172" y1="0" x2="172" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="173" y1="0" x2="173" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="174" y1="0" x2="174" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="175" y1="0" x2="175" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="176" y1="0" x2="176" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="177" y1="0" x2="177" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="178" y1="0" x2="178" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="179" y1="0" x2="179" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="180" y1="0" x2="180" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="181" y1="0" x2="181" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="182" y1="0" x2="182" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="183" y1="0" x2="183" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="184" y1="0" x2="184" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="185" y1="0" x2="185" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="186" y1="0" x2="186" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="187" y1="0" x2="187" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="188" y1="0" x2="188" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="189" y1="0" x2="189" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="190" y1="0" x2="190" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="191" y1="0" x2="191" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="192" y1="0" x2="192" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="193" y1="0" x2="193" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="194" y1="0" x2="194" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="195" y1="0" x2="195" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="196" y1="0" x2="196" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="197" y1="0" x2="197" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="198" y1="0" x2="198" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="199" y1="0" x2="199" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="200" y1="0" x2="200" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="201" y1="0" x2="201" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="202" y1="0" x2="202" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="203" y1="0" x2="203" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="204" y1="0" x2="204" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="205" y1="0" x2="205" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="206" y1="0" x2="206" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="207" y1="0" x2="207" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="208" y1="0" x2="208" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="209" y1="0" x2="209" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="210" y1="0" x2="210" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="211" y1="0" x2="211" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="212" y1="0" x2="212" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="213" y1="0" x2="213" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="214" y1="0" x2="214" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="215" y1="0" x2="215" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="216" y1="0" x2="216" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="217" y1="0" x2="217" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="218" y1="0" x2="218" y2="20" style="stroke:#9ebcdaff;stroke-width:3;" />&lt;line x1="219" y1="0" x2="219" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="220" y1="0" x2="220" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="221" y1="0" x2="221" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="222" y1="0" x2="222" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="223" y1="0" x2="223" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="224" y1="0" x2="224" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="225" y1="0" x2="225" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="226" y1="0" x2="226" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="227" y1="0" x2="227" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="228" y1="0" x2="228" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="229" y1="0" x2="229" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="230" y1="0" x2="230" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="231" y1="0" x2="231" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="232" y1="0" x2="232" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="233" y1="0" x2="233" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="234" y1="0" x2="234" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="235" y1="0" x2="235" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="236" y1="0" x2="236" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="237" y1="0" x2="237" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="238" y1="0" x2="238" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="239" y1="0" x2="239" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="240" y1="0" x2="240" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="241" y1="0" x2="241" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="242" y1="0" x2="242" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="243" y1="0" x2="243" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="244" y1="0" x2="244" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="245" y1="0" x2="245" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="246" y1="0" x2="246" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="247" y1="0" x2="247" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="248" y1="0" x2="248" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="249" y1="0" x2="249" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="250" y1="0" x2="250" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="251" y1="0" x2="251" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="252" y1="0" x2="252" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="253" y1="0" x2="253" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="254" y1="0" x2="254" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="255" y1="0" x2="255" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="256" y1="0" x2="256" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="257" y1="0" x2="257" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="258" y1="0" x2="258" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="259" y1="0" x2="259" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="260" y1="0" x2="260" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="261" y1="0" x2="261" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="262" y1="0" x2="262" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="263" y1="0" x2="263" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="264" y1="0" x2="264" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="265" y1="0" x2="265" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="266" y1="0" x2="266" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="267" y1="0" x2="267" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="268" y1="0" x2="268" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="269" y1="0" x2="269" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="270" y1="0" x2="270" y2="20" style="stroke:#8c96c6ff;stroke-width:3;" />&lt;line x1="271" y1="0" x2="271" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="272" y1="0" x2="272" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="273" y1="0" x2="273" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="274" y1="0" x2="274" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="275" y1="0" x2="275" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="276" y1="0" x2="276" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="277" y1="0" x2="277" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="278" y1="0" x2="278" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="279" y1="0" x2="279" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="280" y1="0" x2="280" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="281" y1="0" x2="281" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="282" y1="0" x2="282" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="283" y1="0" x2="283" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="284" y1="0" x2="284" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="285" y1="0" x2="285" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="286" y1="0" x2="286" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="287" y1="0" x2="287" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="288" y1="0" x2="288" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="289" y1="0" x2="289" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="290" y1="0" x2="290" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="291" y1="0" x2="291" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="292" y1="0" x2="292" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="293" y1="0" x2="293" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="294" y1="0" x2="294" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="295" y1="0" x2="295" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="296" y1="0" x2="296" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="297" y1="0" x2="297" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="298" y1="0" x2="298" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="299" y1="0" x2="299" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="300" y1="0" x2="300" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="301" y1="0" x2="301" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="302" y1="0" x2="302" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="303" y1="0" x2="303" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="304" y1="0" x2="304" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="305" y1="0" x2="305" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="306" y1="0" x2="306" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="307" y1="0" x2="307" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="308" y1="0" x2="308" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="309" y1="0" x2="309" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="310" y1="0" x2="310" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="311" y1="0" x2="311" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="312" y1="0" x2="312" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="313" y1="0" x2="313" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="314" y1="0" x2="314" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="315" y1="0" x2="315" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="316" y1="0" x2="316" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="317" y1="0" x2="317" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="318" y1="0" x2="318" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="319" y1="0" x2="319" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="320" y1="0" x2="320" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="321" y1="0" x2="321" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="322" y1="0" x2="322" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="323" y1="0" x2="323" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="324" y1="0" x2="324" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="325" y1="0" x2="325" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="326" y1="0" x2="326" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="327" y1="0" x2="327" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="328" y1="0" x2="328" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="329" y1="0" x2="329" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="330" y1="0" x2="330" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="331" y1="0" x2="331" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="332" y1="0" x2="332" y2="20" style="stroke:#8c6bb1ff;stroke-width:3;" />&lt;line x1="333" y1="0" x2="333" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="334" y1="0" x2="334" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="335" y1="0" x2="335" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="336" y1="0" x2="336" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="337" y1="0" x2="337" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="338" y1="0" x2="338" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="339" y1="0" x2="339" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="340" y1="0" x2="340" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="341" y1="0" x2="341" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="342" y1="0" x2="342" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="343" y1="0" x2="343" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="344" y1="0" x2="344" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="345" y1="0" x2="345" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="346" y1="0" x2="346" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="347" y1="0" x2="347" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="348" y1="0" x2="348" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="349" y1="0" x2="349" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="350" y1="0" x2="350" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="351" y1="0" x2="351" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="352" y1="0" x2="352" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="353" y1="0" x2="353" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="354" y1="0" x2="354" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="355" y1="0" x2="355" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="356" y1="0" x2="356" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="357" y1="0" x2="357" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="358" y1="0" x2="358" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="359" y1="0" x2="359" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="360" y1="0" x2="360" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="361" y1="0" x2="361" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="362" y1="0" x2="362" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="363" y1="0" x2="363" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="364" y1="0" x2="364" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="365" y1="0" x2="365" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="366" y1="0" x2="366" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="367" y1="0" x2="367" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="368" y1="0" x2="368" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="369" y1="0" x2="369" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="370" y1="0" x2="370" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="371" y1="0" x2="371" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="372" y1="0" x2="372" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="373" y1="0" x2="373" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="374" y1="0" x2="374" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="375" y1="0" x2="375" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="376" y1="0" x2="376" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="377" y1="0" x2="377" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="378" y1="0" x2="378" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="379" y1="0" x2="379" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="380" y1="0" x2="380" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="381" y1="0" x2="381" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="382" y1="0" x2="382" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="383" y1="0" x2="383" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="384" y1="0" x2="384" y2="20" style="stroke:#88419dff;stroke-width:3;" />&lt;line x1="385" y1="0" x2="385" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="386" y1="0" x2="386" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="387" y1="0" x2="387" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="388" y1="0" x2="388" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="389" y1="0" x2="389" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="390" y1="0" x2="390" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="391" y1="0" x2="391" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="392" y1="0" x2="392" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="393" y1="0" x2="393" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="394" y1="0" x2="394" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="395" y1="0" x2="395" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="396" y1="0" x2="396" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="397" y1="0" x2="397" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="398" y1="0" x2="398" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="399" y1="0" x2="399" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="400" y1="0" x2="400" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="401" y1="0" x2="401" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="402" y1="0" x2="402" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="403" y1="0" x2="403" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="404" y1="0" x2="404" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="405" y1="0" x2="405" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="406" y1="0" x2="406" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="407" y1="0" x2="407" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="408" y1="0" x2="408" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="409" y1="0" x2="409" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="410" y1="0" x2="410" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="411" y1="0" x2="411" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="412" y1="0" x2="412" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="413" y1="0" x2="413" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="414" y1="0" x2="414" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="415" y1="0" x2="415" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="416" y1="0" x2="416" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="417" y1="0" x2="417" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="418" y1="0" x2="418" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="419" y1="0" x2="419" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="420" y1="0" x2="420" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="421" y1="0" x2="421" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="422" y1="0" x2="422" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="423" y1="0" x2="423" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="424" y1="0" x2="424" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="425" y1="0" x2="425" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="426" y1="0" x2="426" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="427" y1="0" x2="427" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="428" y1="0" x2="428" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="429" y1="0" x2="429" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="430" y1="0" x2="430" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="431" y1="0" x2="431" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="432" y1="0" x2="432" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="433" y1="0" x2="433" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="434" y1="0" x2="434" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="435" y1="0" x2="435" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="436" y1="0" x2="436" y2="20" style="stroke:#810f7cff;stroke-width:3;" />&lt;line x1="437" y1="0" x2="437" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="438" y1="0" x2="438" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="439" y1="0" x2="439" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="440" y1="0" x2="440" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="441" y1="0" x2="441" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="442" y1="0" x2="442" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="443" y1="0" x2="443" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="444" y1="0" x2="444" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="445" y1="0" x2="445" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="446" y1="0" x2="446" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="447" y1="0" x2="447" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="448" y1="0" x2="448" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="449" y1="0" x2="449" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="450" y1="0" x2="450" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="451" y1="0" x2="451" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="452" y1="0" x2="452" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="453" y1="0" x2="453" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="454" y1="0" x2="454" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="455" y1="0" x2="455" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="456" y1="0" x2="456" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="457" y1="0" x2="457" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="458" y1="0" x2="458" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="459" y1="0" x2="459" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="460" y1="0" x2="460" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="461" y1="0" x2="461" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="462" y1="0" x2="462" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="463" y1="0" x2="463" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="464" y1="0" x2="464" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="465" y1="0" x2="465" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="466" y1="0" x2="466" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="467" y1="0" x2="467" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="468" y1="0" x2="468" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="469" y1="0" x2="469" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="470" y1="0" x2="470" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="471" y1="0" x2="471" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="472" y1="0" x2="472" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="473" y1="0" x2="473" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="474" y1="0" x2="474" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="475" y1="0" x2="475" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="476" y1="0" x2="476" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="477" y1="0" x2="477" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="478" y1="0" x2="478" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="479" y1="0" x2="479" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="480" y1="0" x2="480" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="481" y1="0" x2="481" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="482" y1="0" x2="482" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="483" y1="0" x2="483" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="484" y1="0" x2="484" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="485" y1="0" x2="485" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="486" y1="0" x2="486" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="487" y1="0" x2="487" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="488" y1="0" x2="488" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="489" y1="0" x2="489" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="490" y1="0" x2="490" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="491" y1="0" x2="491" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="492" y1="0" x2="492" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="493" y1="0" x2="493" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="494" y1="0" x2="494" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="495" y1="0" x2="495" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="496" y1="0" x2="496" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="497" y1="0" x2="497" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="498" y1="0" x2="498" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;line x1="499" y1="0" x2="499" y2="20" style="stroke:#4d004bff;stroke-width:3;" />&lt;text x="0" y="35">6&lt;/text>&lt;text x="500" y="35" style="text-anchor:end;">54&lt;/text>&lt;/svg>&lt;/p>
&lt;pre>&lt;code class="language-python">#view map
us_map
&lt;/code>&lt;/pre>
&lt;div style="width:100%;">&lt;div style="position:relative;width:100%;height:0;padding-bottom:60%;">&lt;span style="color:#565656">Make this Notebook Trusted to load map: File -> Trust Notebook&lt;/span>&lt;iframe src="about:blank" style="position:absolute;width:100%;height:100%;left:0;top:0;border:none !important;" data-html=%3C%21DOCTYPE%20html%3E%0A%3Chead%3E%20%20%20%20%0A%20%20%20%20%3Cmeta%20http-equiv%3D%22content-type%22%20content%3D%22text/html%3B%20charset%3DUTF-8%22%20/%3E%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%3Cscript%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20L_NO_TOUCH%20%3D%20false%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20L_DISABLE_3D%20%3D%20false%3B%0A%20%20%20%20%20%20%20%20%3C/script%3E%0A%20%20%20%20%0A%20%20%20%20%3Cstyle%3Ehtml%2C%20body%20%7Bwidth%3A%20100%25%3Bheight%3A%20100%25%3Bmargin%3A%200%3Bpadding%3A%200%3B%7D%3C/style%3E%0A%20%20%20%20%3Cstyle%3E%23map%20%7Bposition%3Aabsolute%3Btop%3A0%3Bbottom%3A0%3Bright%3A0%3Bleft%3A0%3B%7D%3C/style%3E%0A%20%20%20%20%3Cscript%20src%3D%22https%3A//cdn.jsdelivr.net/npm/leaflet%401.6.0/dist/leaflet.js%22%3E%3C/script%3E%0A%20%20%20%20%3Cscript%20src%3D%22https%3A//code.jquery.com/jquery-1.12.4.min.js%22%3E%3C/script%3E%0A%20%20%20%20%3Cscript%20src%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js%22%3E%3C/script%3E%0A%20%20%20%20%3Cscript%20src%3D%22https%3A//cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.js%22%3E%3C/script%3E%0A%20%20%20%20%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//cdn.jsdelivr.net/npm/leaflet%401.6.0/dist/leaflet.css%22/%3E%0A%20%20%20%20%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css%22/%3E%0A%20%20%20%20%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css%22/%3E%0A%20%20%20%20%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css%22/%3E%0A%20%20%20%20%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//cdnjs.cloudflare.com/ajax/libs/Leaflet.awesome-markers/2.0.2/leaflet.awesome-markers.css%22/%3E%0A%20%20%20%20%3Clink%20rel%3D%22stylesheet%22%20href%3D%22https%3A//cdn.jsdelivr.net/gh/python-visualization/folium/folium/templates/leaflet.awesome.rotate.min.css%22/%3E%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cmeta%20name%3D%22viewport%22%20content%3D%22width%3Ddevice-width%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20initial-scale%3D1.0%2C%20maximum-scale%3D1.0%2C%20user-scalable%3Dno%22%20/%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%23map_7c415fc94a274a389a7c2cfec9c1ab7c%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20position%3A%20relative%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20width%3A%20100.0%25%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20height%3A%20100.0%25%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20left%3A%200.0%25%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20top%3A%200.0%25%3B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C/style%3E%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%3Cscript%20src%3D%22https%3A//cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js%22%3E%3C/script%3E%0A%3C/head%3E%0A%3Cbody%3E%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cdiv%20class%3D%22folium-map%22%20id%3D%22map_7c415fc94a274a389a7c2cfec9c1ab7c%22%20%3E%3C/div%3E%0A%20%20%20%20%20%20%20%20%0A%3C/body%3E%0A%3Cscript%3E%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20map_7c415fc94a274a389a7c2cfec9c1ab7c%20%3D%20L.map%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22map_7c415fc94a274a389a7c2cfec9c1ab7c%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20center%3A%20%5B40.6925%2C%20-74.1687%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20crs%3A%20L.CRS.EPSG3857%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20zoom%3A%205%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20zoomControl%3A%20true%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20preferCanvas%3A%20false%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29%3B%0A%0A%20%20%20%20%20%20%20%20%20%20%20%20%0A%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20tile_layer_c117857eae2b43bd88b2aaa908c5fe65%20%3D%20L.tileLayer%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22https%3A//cartodb-basemaps-%7Bs%7D.global.ssl.fastly.net/light_all/%7Bz%7D/%7Bx%7D/%7By%7D.png%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22attribution%22%3A%20%22%5Cu0026copy%3B%20%5Cu003ca%20href%3D%5C%22http%3A//www.openstreetmap.org/copyright%5C%22%5Cu003eOpenStreetMap%5Cu003c/a%5Cu003e%20contributors%20%5Cu0026copy%3B%20%5Cu003ca%20href%3D%5C%22http%3A//cartodb.com/attributions%5C%22%5Cu003eCartoDB%5Cu003c/a%5Cu003e%2C%20CartoDB%20%5Cu003ca%20href%20%3D%5C%22http%3A//cartodb.com/attributions%5C%22%5Cu003eattributions%5Cu003c/a%5Cu003e%22%2C%20%22detectRetina%22%3A%20false%2C%20%22maxNativeZoom%22%3A%2018%2C%20%22maxZoom%22%3A%2018%2C%20%22minZoom%22%3A%200%2C%20%22noWrap%22%3A%20false%2C%20%22opacity%22%3A%201%2C%20%22subdomains%22%3A%20%22abc%22%2C%20%22tms%22%3A%20false%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_5f79b751b53a4a54ba8cca3fbe033758%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1ee1d44a285844fda50ff19b40e3172a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B28.429399490356445%2C%20-81.30899810791016%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_94af3d7aed964774816ce17501ed72b7%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B28.429399490356445%2C%20-81.30899810791016%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B20.0%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_67888ecfacfd4e0586b4678739ed6112%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_2449f689c21e45e69cb7a5bdf07bfb8d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.94449997%2C%20-77.45580292%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_96f31fa75ef04f1d905d5089f5b3208e%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.94449997%2C%20-77.45580292%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.7118572035699104%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_862622bbeeec40d5b1e4a18216a064ae%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_066b2ecee08e422e937878d409ae68a7%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B25.79319953918457%2C%20-80.29060363769531%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_5cb302e46ea74deca0ee704a680f1323%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B25.79319953918457%2C%20-80.29060363769531%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B8.558011049723756%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_ea979ac2763a4958a6b8e3a424592be2%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_24a0dd1c581c43749467ceecde842fac%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B26.072599411010746%2C%20-80.15270233154297%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_518d4a897a0744cb811e3672c362e5db%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B26.072599411010746%2C%20-80.15270233154297%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B16.982717098739197%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_cb451c3a8c6b4356a2f60a33dbc32cfe%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9938cabbbb4c4e9fb0651bcf05fef670%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.36429977%2C%20-71.00520325%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_f2b790f06dd04820ba2d742d012d1382%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.36429977%2C%20-71.00520325%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B13.701657458563535%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_4fc236931b014988beed0aa1f98dbeea%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_61d2ccadd8b744a39eb0bad09de0a86d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B33.43429946899414%2C%20-112.01200103759766%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_33a6543b5fc8420c97ee9a6cddb46ff7%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B33.43429946899414%2C%20-112.01200103759766%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B7.322566935826604%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_4e2b9172d4ea4e0ca42e5125ea7ceda4%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c27d30007a484ec4ba60aedb8dc336c2%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.97859955%2C%20-87.90480042%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_c08ddcbd0f3e4ca2a93c4edbee0149ad%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.97859955%2C%20-87.90480042%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B14.078481371299052%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_357cf0e34dea472cb09a39d8acc874c8%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_ab18da6bbfad47d4bd59b86a75a91574%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B32.89680099487305%2C%20-97.03800201416016%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_dc1e942d66b34d639436c08960299dd7%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B32.89680099487305%2C%20-97.03800201416016%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B8.240402323275251%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c9851bd84b6b4bafbdefc8e17449a5dd%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_ba6716dde4de4b4eaac7a4ccb827f977%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B35.2140007019043%2C%20-80.94309997558594%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_3853befc95b94b4198af9d67a74d1a28%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B35.2140007019043%2C%20-80.94309997558594%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B9.093639325683524%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_48b176a1ef1a4a8ca1c11aebc83308a2%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_69b5d801f30d49058fa83359e8d1d8b8%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B47.44900131225586%2C%20-122.30899810791016%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_6687ecfd7cab485080bba1be998ee7ff%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B47.44900131225586%2C%20-122.30899810791016%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B6.100580818812864%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_b00ec2d605934e0aa1c6a5677ae548bb%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_2f6855e588a447f48bdadb42c27f0241%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B27.975500106811523%2C%20-82.533203125%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_bfea3de7c2454f08b7480f5d1c8ed044%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B27.975500106811523%2C%20-82.533203125%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B8.10582235444114%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1ec0978ce0674b9bbe1a5002a4b24295%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_58c6db78548e424db9ae47ae3071733f%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B33.63669967651367%2C%20-84.4281005859375%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_f23f4f7b538344cc88e88b662a6d226a%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B33.63669967651367%2C%20-84.4281005859375%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B16.46054681966284%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1457386030b9405991b306a0c0fb5200%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_8adcc5caf0e247f7a139c2031d9542d4%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B37.61899948120117%2C%20-122.375%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_0abd6b82cc5041378f4e67a3e4244bf6%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B37.61899948120117%2C%20-122.375%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B17.60716815412948%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_635c352aec8548d68804949e8fb505f9%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_f1c9769032ba4eef8446f3557f6cbbcd%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B30.49410057067871%2C%20-81.68789672851561%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_2aec7e9ca4cb47ac93851fd010605ba3%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B30.49410057067871%2C%20-81.68789672851561%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.3215752939509846%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d18a771f3fbd468589a4848120f90132%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_cdf853fd12e14441a115842fc0108e72%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B36.08010101%2C%20-115.1520004%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_ad42ab64cd6c46e9b819faa023ae7a8c%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B36.08010101%2C%20-115.1520004%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B6.730415072956509%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_301a1abe79db4564a2a8b4b9fb2d5073%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_dc782348084c412b8e48337efb27a5cc%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B26.68320083618164%2C%20-80.09559631347656%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_160385284efc41b08ccbf52e89357f4f%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B26.68320083618164%2C%20-80.09559631347656%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B9.763847570477404%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_fb200eff573e4d55ab397d994f36f915%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9fc8dd5ec44b40659a314faa12195594%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.4117012024%2C%20-81.8498001099%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_39d0d315a9634dcebda2e54a0958ab0b%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.4117012024%2C%20-81.8498001099%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B5.489587760305993%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_017d6f3f699b45d287cd71e88102bfac%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c6452d4faecf433b8430c95bb5ec2e6a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B32.7336006165%2C%20-117.190002441%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_0eb83ef2895041519cf2441b90a2d901%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B32.7336006165%2C%20-117.190002441%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B4.908202294942626%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9d601e0e6fe74237935dffb5e6b70bcc%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_7d47c9297711424c8dbdbcf3a01a1101%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.861698150635%2C%20-104.672996521%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_769af7f66a2c463cb873be684ba25124%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.861698150635%2C%20-104.672996521%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B9.723473579827171%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_6037ce2452dd41b4b0b2584553367958%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c72ebbffc68f4123bb03eee57e35edf7%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B29.984399795532227%2C%20-95.34140014648436%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_95f45a5a49be488188eea767339e1c08%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B29.984399795532227%2C%20-95.34140014648436%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B10.304859045190536%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c722f0422aa14609bfb569891c2a54d2%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_8cc11aeed9614369a68912d8da6f2494%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B44.4719009399%2C%20-73.15329742429999%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_398da29dbd3a4cbb8295c7fba069b2b2%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B44.4719009399%2C%20-73.15329742429999%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.4762714265476697%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_73d191a0b6104abdb52d4e4acb070399%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_46a1394e0fe84e88bb4d58708a9b504c%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B32.89860153%2C%20-80.04049683%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_6f2e031f08d843a7a18d2edcb9598b15%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B32.89860153%2C%20-80.04049683%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.438589035274118%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1e80e1534e6b448ba55f6a079277abd4%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_b895e9eee0414ccc950fc47d582a239a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B30.194499969482425%2C%20-97.6698989868164%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e1e00a3068f14ae09c28524cb82d2226%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B30.194499969482425%2C%20-97.6698989868164%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B4.830145913018841%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d727f50adc3d4c8f965f9e8c26a112f1%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c312bfb595b14a8a82fc268f3c025229%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B33.94250107%2C%20-118.4079971%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e0715536eec446139e3adc60dccc4110%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B33.94250107%2C%20-118.4079971%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B15.036690749397932%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_f71d4e74544f4d8998add8ca013b3d42%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_275a60c4575c4a59b9373d738e407522%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B26.53619956970215%2C%20-81.75520324707031%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_cb97727d85224e2c87b7e53e27961d3d%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B26.53619956970215%2C%20-81.75520324707031%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B6.4935543278084715%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e80715d473944a418580ff94fe405341%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e9e34c3b99764450bacef2e096f6d5c0%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.64260101%2C%20-106.9179993%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_13e2b2b4fb094771b4549eb1ee85bafa%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.64260101%2C%20-106.9179993%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.2664683382915427%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_944a89c80f9a4c69b858659630dc9743%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_43ae9425a0374f91a42b183ef1fec33d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B32.12760162%2C%20-81.20210266%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_97b0c623ce1140ea9deb610840b7c6bd%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B32.12760162%2C%20-81.20210266%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.1290551069556596%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_6484d940d73b4f8280ac69d4e4f0a8cf%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_bcc5a58ab75a48d68548266687e5c17e%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B36.1245002746582%2C%20-86.6781997680664%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_595e04ba931d464bbab410520cf2e6ca%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B36.1245002746582%2C%20-86.6781997680664%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B4.270293242668933%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_2681a37d4cb34e2d865e4cbe032b1d54%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_2c7493a99b614a43b3736d75c117da26%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B21.31870079040528%2C%20-157.9219970703125%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_8579fe0d424949ff877aa840be332fc0%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B21.31870079040528%2C%20-157.9219970703125%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.9582093780988807%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_53732ad78ce24084b4adf52e203c3146%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_0421b0dc99ef43fc839d651d87b014fb%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.90240097045898%2C%20-84.21939849853516%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_9f45dd36e67c41abbc3ee854c8b122a9%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.90240097045898%2C%20-84.21939849853516%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.9447513812154695%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_bd3c63a361e6411b8b6911e17799dbd0%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_fbda455d05ac4a2fb3f3534956acc3a1%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.94049835%2C%20-78.73220062%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e4d01568dc2d41afa3d438d38e7646be%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.94049835%2C%20-78.73220062%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.1775038957359403%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e6b68bf1d18e4b9781e5b8344c3c166a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_65d499c997994b72b437c8896dde5583%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.48120117%2C%20-107.2180023%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_a137f00a54e14a839dddbed5c4f5b2d6%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B40.48120117%2C%20-107.2180023%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.053831987533645%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a70a3689246147a99b953ec8130161ae%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e701a63b0a7b4b98a3d0841b1eb0ae4f%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B34.8956985474%2C%20-82.2189025879%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_5c548f97536245afa39470e7c80373f2%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B34.8956985474%2C%20-82.2189025879%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.8613118005383198%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c26ec5031639416e849e32b10764b7bc%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_37f4a6beb5074ef7927cee963b6faba0%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B44.8819999695%2C%20-93.2218017578%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_3434c4aaa6944e439b8ea1842e49e1a5%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B44.8819999695%2C%20-93.2218017578%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B4.663266751664541%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_288430923e0c4dc2b12af31b62e62467%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_37904e2787d343e7bd00ff99631cae8f%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.7859992980957%2C%20-87.75240325927734%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_345aba3ad5f844e49cd7050fe2afaf2b%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.7859992980957%2C%20-87.75240325927734%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B5.912168862445106%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_baf3a60da91d4e9e8b628d29f12bdbd4%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_288c83b2bfd84dc080468b8f63e3159a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B43.13990020751953%2C%20-89.3375015258789%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_6fde5a9c90504aee92dce237e6481bb2%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B43.13990020751953%2C%20-89.3375015258789%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.3404164895877604%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_8bc16ef0bdb9411c941ecc3b55a12fa5%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_5276519f2759478dbcd52223b153dd82%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B27.39539909362793%2C%20-82.55439758300781%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_da006e277c104891988e9e118720d484%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B27.39539909362793%2C%20-82.55439758300781%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.3499079189686924%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_8c0bb733d6b74cb9acd282ddde70eaa8%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_fbe10497d46d493fb232760bdd3464f7%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.8521%2C%20-77.037697%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_debdbddfc27a41a0802f7a4371192c00%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.8521%2C%20-77.037697%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B6.781555461113473%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_cbacba841af64d82830800ce38edb674%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_b2da7ddbbeed4c30a3141abe3a60b113%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.7173%2C%20-86.294403%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e5eb98b6f288448aba290e687e6175e9%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.7173%2C%20-86.294403%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.839637342399773%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_5b23e0a914d54c6d921c4094bc9a9f8f%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_47ffb94221784d33bcb0a6ef7a5e61c5%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.74869918823242%2C%20-90.37000274658205%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_f6b38017dfc64489b518ad1675963973%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.74869918823242%2C%20-90.37000274658205%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B5.508428955942768%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_2b45207bf5f14b71820d2f0750b1b757%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_6b66cd4ac1e84b25b4a48994a63309db%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B43.6072998046875%2C%20-110.73799896240234%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_9eacca0582ea4b91a7f295d675541bd1%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B43.6072998046875%2C%20-110.73799896240234%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.2018699532511687%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_af3561ebb3ad46d29b7c1b5e3ddac905%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_28a422102f104523a518e95993d55623%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.2976%2C%20-94.713898%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_332dd74e2ada40fdaeae370252aeaeb5%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.2976%2C%20-94.713898%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.1803371582377107%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d3321c3ec59c499698373f27c055de56%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_7cdd0027088a4d46b65f179a8545e3ce%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B45.77750015%2C%20-111.1529999%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e52f49d27b284104b3ffe7c654685dcd%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B45.77750015%2C%20-111.1529999%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.1534211644708883%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d1f6a9e321cd45db8169cd39d9f26ee9%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_01553f1adc554fc6960726980a9f8fed%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.5097999573%2C%20-107.893997192%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_cbe919a4601d46b695afef1c07d3be87%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.5097999573%2C%20-107.893997192%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.0565235869103273%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9fbfd19927c9428691ac73ffbed2f305%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a72b77e7f5f0454d90c051a220750984%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B36.097801208496094%2C%20-79.93730163574219%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_47f43e3f3c0b459392575f7b8af551bd%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B36.097801208496094%2C%20-79.93730163574219%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.088681116305426%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_62a6d22fe60e44d788b2e397b21fa11d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_b3e4d59d9e9042dc8f0bda00d4a890e7%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B35.04240036010742%2C%20-89.97669982910156%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_66887098089a424fbf66cbf7ec4fa415%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B35.04240036010742%2C%20-89.97669982910156%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.3188836945743025%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_6ada1bacb5e34d93b502586c2da160e5%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9236ad26578446f3a6b0eb3e463eceef%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.78839874267578%2C%20-111.97799682617188%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_d096fdc9d2e343988b34b3f365f90288%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B40.78839874267578%2C%20-111.97799682617188%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.7818387873636494%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_f8e40da564ea4e3f998cfa89db0265e5%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_728e0bff820a4e40b743ecec1a600651%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B37.50519943237305%2C%20-77.3197021484375%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_b4dd76b31924426aa997d06d15db6c2a%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B37.50519943237305%2C%20-77.3197021484375%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.5408698115880437%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a9b5eff6e7d44019b1ff7d4595e29cbf%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_91cefe24f4ea47ad857844060592cb4b%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B35.035301208496094%2C%20-85.20379638671875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_b9033ae1bd50479f94b4b31526531d57%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B35.035301208496094%2C%20-85.20379638671875%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.7226236010766396%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_206274f7b2de4edd8d05042f72a0f228%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c6294f2e75924ac6ad4fa71bc6f8cdca%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.99800109863281%2C%20-82.89189910888672%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_5a4db23f39d54b29aa80c4970c2ff3bd%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.99800109863281%2C%20-82.89189910888672%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.1398215044623883%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_712546fa983643fd87d96c36952a7bed%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d1b74eef5caf4659987afe4150d1bf32%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B36.89459991455078%2C%20-76.20120239257811%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_cee52154c40f4fbe9cf59ef2ce5afa4a%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B36.89459991455078%2C%20-76.20120239257811%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.7831137554894463%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_30b1ee81c5014f0fa23dc81770fe994d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_6892f8d2bb3d4543bc29615775182ba6%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B35.43619918823242%2C%20-82.54180145263672%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_8edb00bdaac14931ac6e4cb4641021d3%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B35.43619918823242%2C%20-82.54180145263672%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.839779005524862%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_4da99680017f48bc95b6dcfe367c52b3%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_7caf4ca826184f088b7cd7a23cdc17c4%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.0364990234375%2C%20-84.60590362548828%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_dc2a9d3ce3c64421bb36e986b0bee561%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.0364990234375%2C%20-84.60590362548828%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.6621334466638333%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_fae5979dcd7e47ecaee4f54ba1cf562a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_df316e6d6e6a45439a60d62dec19c6e1%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.91609954833984%2C%20-81.44219970703125%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c6bb1%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_d22a144161f945f99e202f2b6bb42b84%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B40.91609954833984%2C%20-81.44219970703125%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.6983992066864997%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_52f3b6f50bac44649e80e3a7becffa16%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e3b7feaeb2814b7fa99bc00b51cc3cdd%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B33.67570114%2C%20-117.8679962%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_cd4aad2ab0eb4bf88b0189af35e7067c%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B33.67570114%2C%20-117.8679962%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.145204703215753%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_cae9ce3706004b2eb0cd9d0916f9a360%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1c869707088647788892816cfff2320d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.73260116577149%2C%20-71.42040252685547%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_27154f40e2c240e2a9f91118555cc87d%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.73260116577149%2C%20-71.42040252685547%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.3296500920810312%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_02c1823742aa459aa75b2b6262d24ded%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e6c1ace1a7e54e2c94cf207feae0c920%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B43.64619827%2C%20-70.30930328%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_532d171bfe194afbb07ba1d645da76e6%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B43.64619827%2C%20-70.30930328%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.71582377107239%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a3d37a9091b745478e822aafe6cec636%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_03cda69b501f4c498bbd896b8a6943ed%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B45.58869934%2C%20-122.5979996%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_362974f197ec4feb9b1a95d49806fc1a%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B45.58869934%2C%20-122.5979996%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.365915852103697%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_7dce0a7020bd4c629498ba6a49516eee%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_4645e225abe34b0fa0ac7090d2700800%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.212398529052734%2C%20-83.35340118408203%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_b07da7b864b2410a87e1c1b45665110e%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.212398529052734%2C%20-83.35340118408203%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B4.100722481937952%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_8dcd68e6d1e448e89d0af2500a8fe71f%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_2b51f8365e03495eb76cc356bf1566aa%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.94720077514648%2C%20-87.89659881591797%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c6bb1%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_7e412868230f4e5e8469abb8be05d6db%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.94720077514648%2C%20-87.89659881591797%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.166737498229211%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d612d0c111734122971448146fd5894c%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1e8090acc89a455f86d9bd2942c825b7%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B29.533700942993164%2C%20-98.46980285644533%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_f8c6c270c30c4d49909ec46df786e1fa%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B29.533700942993164%2C%20-98.46980285644533%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.691741039807338%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_65619dd094d84ebf8ec737f5c4a44ccd%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_b65de32bc0da4d5f8064904b9aab3b12%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B43.118900299072266%2C%20-77.67240142822266%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_26482eb22042414d85aa67d8a6038f9c%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B43.118900299072266%2C%20-77.67240142822266%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.690324408556453%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a0214add1c3b4c8f9ea35396a39fc9f2%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1edc33c37dd34c66b5fda0b4864ea2fc%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.88079834%2C%20-85.52279663%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_3e1db16af62b49698d4159e4642d5425%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.88079834%2C%20-85.52279663%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.2408273126505174%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c036100c3adf4d0991729d6e83ae264c%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1069c3936aa34ff58531c37204c7d058%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B29.99340057373047%2C%20-90.25800323486328%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_bbe91e4c95bf4f4aa6fbcd5374d294cd%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B29.99340057373047%2C%20-90.25800323486328%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.535486612834679%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_688fea6fdf674e7cbe13f5fea152c07b%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_7156627c8c544b60aa0484ea59d6061c%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.96540069580078%2C%20-83.74359893798828%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23810f7c%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_9a77a33cd8bc435287a7e27ef17de08f%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.96540069580078%2C%20-83.74359893798828%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.279926335174954%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_077570bea820458687636e8597ee588a%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9cba50289e964fda8dcdd992821fa28c%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B35.87760162353516%2C%20-78.7874984741211%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_c69fea9bfaf64549b6c6b4802cf388b6%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B35.87760162353516%2C%20-78.7874984741211%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B3.4439722340274828%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_dd0b83ea473c44ac9d44ba54a96b38ae%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_99ef3a39597347ffb213f032240e1d69%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B35.81100082%2C%20-83.9940033%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c6bb1%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_5ed9253aa80242589577433d29a7189e%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B35.81100082%2C%20-83.9940033%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.6391840203994903%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e7db52f87a3c494e9b23e0b4a16971d7%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c4228542a39d44afbdbb779f5b755034%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.53400039672852%2C%20-93.66310119628906%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%234d004b%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_feb22f919e3d422ca35982cb455dfc45%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.53400039672852%2C%20-93.66310119628906%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.355291117722057%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c781eedd28c84e5a9a773a98b15aa7d8%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_abb7287bcee445748cbcfc1c0f15fc02%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.70869827270508%2C%20-86.31729888916016%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%2388419d%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_6ee3e0ad50fc4fccb2b776d23b5b94e4%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.70869827270508%2C%20-86.31729888916016%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.1197053406998156%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_424f42b15dd44864bd2534c30e62d7e0%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_25f89b77a3424c13912f545974ca7c07%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.303199768066406%2C%20-95.89409637451172%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_42de58d583b2405b9d940c54c5732ad9%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.303199768066406%2C%20-95.89409637451172%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.7025074373140672%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_6a83e4c6ed574557ba5145842dacad4b%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_fdf530a8c7024e8087a9c28eb8cf80b8%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.97850037%2C%20-85.19509888%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%234d004b%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_68b99443381241c584cbccbeb1a9b34b%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B40.97850037%2C%20-85.19509888%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.8586202011616377%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a2083784beb84bb284bfca2c9947f656%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_07705de806d146c0a7289a1c586b37da%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.93259811401367%2C%20-71.43569946289062%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_2ed20acb25274cc19805e31416fe4e59%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.93259811401367%2C%20-71.43569946289062%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.9178353874486471%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_da854dc8a5d84e43907858ef9c071a99%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_e8825611dacf4a54a80dfd00c0c7cd22%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.0488014221%2C%20-84.6678009033%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e1c07fb5821e4d02bebd83b5e9414320%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.0488014221%2C%20-84.6678009033%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.2718515370449073%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_d131019af57c495ebfaa1153e2cb09c2%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_348fe1e09fad4ff4b8c7fc2a8a57527d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.1744%2C%20-85.736%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_6899a17d3dbe4a9b9df6ec9e62001447%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.1744%2C%20-85.736%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.216602918260377%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_055e8aad45914b838776953cfd625c18%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_01a6194cf6174bada2fedd3d9e3a0ae1%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B39.17539978%2C%20-76.66829681%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c6bb1%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_86c24227044b423b9e11c805b70a691a%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B39.17539978%2C%20-76.66829681%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.3000424989375263%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_83d334b2c34e41229b2afabf8eedaadc%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_271f8084e32d4592bfc348b65f348f33%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.9388999939%2C%20-72.68319702149999%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_8e0c18dffc914de6995776bc3e177300%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.9388999939%2C%20-72.68319702149999%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.7186570335741607%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_3a5af75b3a8444fa8d8bfbee5fe308f1%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_8820b2cc68eb40ae96cd48178478c205%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B42.74829864501953%2C%20-73.80169677734375%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_399015828618474bbd43daa42042429e%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B42.74829864501953%2C%20-73.80169677734375%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.172262360107664%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_abba4f8c2ad341d8b177bb0699a3d7ff%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9b191d8dd3364910830f93aa70eac31c%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.49150085%2C%20-80.23290253%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_3851302936d24fd8b44c8376cf968f47%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B40.49150085%2C%20-80.23290253%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.1265051707040656%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_0ede1edd35194a8db2ea1f41b108cb63%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_dee04b39e0a140bbb0aadc79b6c3b873%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B41.3385009766%2C%20-75.72339630130001%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_52ab8f4942a844139e7a855bb11c4aa2%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B41.3385009766%2C%20-75.72339630130001%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.5517778722198612%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_9dfbee9865f6400c948ad641511cc192%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_ae7d01916b5b44d09956904f6943b189%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B33.6796989441%2C%20-78.9282989502%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23f7fcfd%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_cfb3f70ae7db4666ad600f57d42c57f8%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B33.6796989441%2C%20-78.9282989502%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.631109222269443%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_3c455ac359134a21944131c1a0523e80%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_7de7af110c41446aa830ba2d789188ba%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B43.11119842529297%2C%20-76.1063003540039%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_939670c50a5547f3b580f02b67e02908%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B43.11119842529297%2C%20-76.1063003540039%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.9393681824621052%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_63021f5c4efc4525b7362cdfec945372%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_0cf3167bb4e34f18bc9ca5a0cde6e81f%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B37.36259841918945%2C%20-121.9290008544922%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%239ebcda%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_267230904919410d8c8f6bcd0202a154%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B37.36259841918945%2C%20-121.9290008544922%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B2.5342116447088827%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_30efb6f79b5047efaf155a1a1bd2b301%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_5586df2b7a4b4b9e8a14a1df8bffdfff%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B44.80739974975586%2C%20-68.8281021118164%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_5d35c687df2c4f6687875e254ffe46dd%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B44.80739974975586%2C%20-68.8281021118164%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.9770505737356565%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_1c070468cfd34ee3a2f2faa9b7b6b052%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_0e78c8df70c144e491074fa68118832e%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B37.72129821777344%2C%20-122.22100067138672%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23bfd3e6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_d26ad49385454e098e8cd5fc61243f8c%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B37.72129821777344%2C%20-122.22100067138672%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.1776455588610284%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_3e96c371143c407e81c816210784fd2b%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_952b07f858c94ce3b7c915d182a13e32%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B38.69540023803711%2C%20-121.59100341796876%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c6bb1%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_4e2461daeef94545b1d02a18e33a9d68%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B38.69540023803711%2C%20-121.59100341796876%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.541011474713132%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_c64a9939058a44c4b43fe33d2de4c032%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_05c29977fbcb4a0386c38943140ea336%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B61.17440032958984%2C%20-149.99600219726562%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c96c6%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_dbd87add5b074baba51fba4e42012dab%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B61.17440032958984%2C%20-149.99600219726562%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.0269159937668224%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_597394eb3b034c12b5d6b089637a3774%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_39996cfdabf144449f7617f48e9daa50%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B44.74140167236328%2C%20-85.58219909667969%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%23e0ecf4%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_e269f7d030e24fc980bbc41f9051d196%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B44.74140167236328%2C%20-85.58219909667969%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.21532795013458%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_a276a420a261477c8f3c291e8b1bd06d%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B40.692501068115234%2C%20-74.168701171875%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%22%23005083%22%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%205%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20circle_marker_ec4c722142684d03a6965e77d9f4ef96%20%3D%20L.circleMarker%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B36.281898%2C%20-94.306801%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22%233388ff%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20true%2C%20%22fillColor%22%3A%20%5B%22%238c6bb1%22%5D%2C%20%22fillOpacity%22%3A%201%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22opacity%22%3A%201.0%2C%20%22radius%22%3A%2010%2C%20%22stroke%22%3A%20false%2C%20%22weight%22%3A%203%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20%20%20%20%20%20%20%20%20var%20poly_line_7eaebf091e334ae8a582885c0fa7adc6%20%3D%20L.polyline%28%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%5B%5B40.692501068115234%2C%20-74.168701171875%5D%2C%20%5B36.281898%2C%20-94.306801%5D%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%7B%22bubblingMouseEvents%22%3A%20true%2C%20%22color%22%3A%20%22black%22%2C%20%22dashArray%22%3A%20null%2C%20%22dashOffset%22%3A%20null%2C%20%22fill%22%3A%20false%2C%20%22fillColor%22%3A%20%22black%22%2C%20%22fillOpacity%22%3A%200.2%2C%20%22fillRule%22%3A%20%22evenodd%22%2C%20%22lineCap%22%3A%20%22round%22%2C%20%22lineJoin%22%3A%20%22round%22%2C%20%22noClip%22%3A%20false%2C%20%22opacity%22%3A%200.1%2C%20%22smoothFactor%22%3A%201.0%2C%20%22stroke%22%3A%20true%2C%20%22weight%22%3A%20%5B1.0%5D%7D%0A%20%20%20%20%20%20%20%20%20%20%20%20%29.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%20%20%20%20%20%20%20%20%0A%20%20%20%20%0A%20%20%20%20var%20color_map_546ff9419da9472486889486cb0a7331%20%3D%20%7B%7D%3B%0A%0A%20%20%20%20%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.color%20%3D%20d3.scale.threshold%28%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20.domain%28%5B6.0%2C%206.096192384769539%2C%206.192384769539078%2C%206.2885771543086175%2C%206.384769539078157%2C%206.480961923847695%2C%206.577154308617234%2C%206.673346693386773%2C%206.7695390781563125%2C%206.865731462925852%2C%206.961923847695391%2C%207.05811623246493%2C%207.154308617234469%2C%207.2505010020040075%2C%207.346693386773547%2C%207.442885771543086%2C%207.539078156312625%2C%207.635270541082164%2C%207.731462925851703%2C%207.8276553106212425%2C%207.923847695390782%2C%208.02004008016032%2C%208.11623246492986%2C%208.2124248496994%2C%208.308617234468938%2C%208.404809619238478%2C%208.501002004008015%2C%208.597194388777556%2C%208.693386773547093%2C%208.789579158316634%2C%208.885771543086172%2C%208.98196392785571%2C%209.07815631262525%2C%209.17434869739479%2C%209.270541082164328%2C%209.366733466933868%2C%209.462925851703407%2C%209.559118236472946%2C%209.655310621242485%2C%209.751503006012024%2C%209.847695390781563%2C%209.943887775551103%2C%2010.040080160320642%2C%2010.13627254509018%2C%2010.23246492985972%2C%2010.328657314629258%2C%2010.424849699398798%2C%2010.521042084168336%2C%2010.617234468937877%2C%2010.713426853707414%2C%2010.809619238476955%2C%2010.905811623246493%2C%2011.002004008016032%2C%2011.098196392785571%2C%2011.19438877755511%2C%2011.29058116232465%2C%2011.386773547094188%2C%2011.482965931863728%2C%2011.579158316633267%2C%2011.675350701402806%2C%2011.771543086172345%2C%2011.867735470941884%2C%2011.963927855711422%2C%2012.060120240480963%2C%2012.1563126252505%2C%2012.252505010020041%2C%2012.348697394789578%2C%2012.44488977955912%2C%2012.541082164328657%2C%2012.637274549098198%2C%2012.733466933867735%2C%2012.829659318637274%2C%2012.925851703406813%2C%2013.022044088176353%2C%2013.118236472945892%2C%2013.214428857715431%2C%2013.31062124248497%2C%2013.40681362725451%2C%2013.503006012024048%2C%2013.599198396793586%2C%2013.695390781563127%2C%2013.791583166332664%2C%2013.887775551102205%2C%2013.983967935871743%2C%2014.080160320641282%2C%2014.176352705410821%2C%2014.27254509018036%2C%2014.3687374749499%2C%2014.464929859719438%2C%2014.561122244488978%2C%2014.657314629258517%2C%2014.753507014028056%2C%2014.849699398797595%2C%2014.945891783567134%2C%2015.042084168336673%2C%2015.138276553106213%2C%2015.234468937875752%2C%2015.330661322645291%2C%2015.42685370741483%2C%2015.52304609218437%2C%2015.619238476953909%2C%2015.715430861723448%2C%2015.811623246492985%2C%2015.907815631262524%2C%2016.004008016032063%2C%2016.100200400801604%2C%2016.196392785571142%2C%2016.29258517034068%2C%2016.38877755511022%2C%2016.48496993987976%2C%2016.5811623246493%2C%2016.677354709418836%2C%2016.773547094188377%2C%2016.869739478957918%2C%2016.965931863727455%2C%2017.062124248496993%2C%2017.158316633266534%2C%2017.254509018036075%2C%2017.350701402805612%2C%2017.44689378757515%2C%2017.54308617234469%2C%2017.639278557114228%2C%2017.73547094188377%2C%2017.831663326653306%2C%2017.927855711422843%2C%2018.024048096192384%2C%2018.120240480961925%2C%2018.216432865731463%2C%2018.312625250501%2C%2018.40881763527054%2C%2018.505010020040082%2C%2018.60120240480962%2C%2018.697394789579157%2C%2018.793587174348698%2C%2018.88977955911824%2C%2018.985971943887776%2C%2019.082164328657313%2C%2019.178356713426854%2C%2019.274549098196395%2C%2019.370741482965933%2C%2019.46693386773547%2C%2019.563126252505008%2C%2019.65931863727455%2C%2019.75551102204409%2C%2019.851703406813627%2C%2019.947895791583164%2C%2020.044088176352705%2C%2020.140280561122246%2C%2020.236472945891784%2C%2020.33266533066132%2C%2020.428857715430862%2C%2020.525050100200403%2C%2020.62124248496994%2C%2020.717434869739478%2C%2020.81362725450902%2C%2020.90981963927856%2C%2021.006012024048097%2C%2021.102204408817634%2C%2021.19839679358717%2C%2021.294589178356713%2C%2021.390781563126254%2C%2021.48697394789579%2C%2021.58316633266533%2C%2021.67935871743487%2C%2021.77555110220441%2C%2021.871743486973948%2C%2021.967935871743485%2C%2022.064128256513026%2C%2022.160320641282564%2C%2022.256513026052104%2C%2022.352705410821642%2C%2022.448897795591183%2C%2022.54509018036072%2C%2022.64128256513026%2C%2022.7374749498998%2C%2022.83366733466934%2C%2022.929859719438877%2C%2023.026052104208418%2C%2023.122244488977955%2C%2023.218436873747496%2C%2023.314629258517034%2C%2023.410821643286575%2C%2023.507014028056112%2C%2023.603206412825653%2C%2023.69939879759519%2C%2023.795591182364728%2C%2023.89178356713427%2C%2023.987975951903806%2C%2024.084168336673347%2C%2024.180360721442884%2C%2024.276553106212425%2C%2024.372745490981963%2C%2024.468937875751504%2C%2024.56513026052104%2C%2024.661322645290582%2C%2024.75751503006012%2C%2024.85370741482966%2C%2024.949899799599198%2C%2025.04609218436874%2C%2025.142284569138276%2C%2025.238476953907817%2C%2025.334669338677354%2C%2025.430861723446895%2C%2025.527054108216433%2C%2025.62324649298597%2C%2025.71943887775551%2C%2025.81563126252505%2C%2025.91182364729459%2C%2026.008016032064127%2C%2026.104208416833668%2C%2026.200400801603205%2C%2026.296593186372746%2C%2026.392785571142284%2C%2026.488977955911825%2C%2026.585170340681362%2C%2026.681362725450903%2C%2026.77755511022044%2C%2026.87374749498998%2C%2026.96993987975952%2C%2027.06613226452906%2C%2027.162324649298597%2C%2027.258517034068138%2C%2027.354709418837675%2C%2027.450901803607213%2C%2027.547094188376754%2C%2027.64328657314629%2C%2027.739478957915832%2C%2027.83567134268537%2C%2027.93186372745491%2C%2028.028056112224448%2C%2028.12424849699399%2C%2028.220440881763526%2C%2028.316633266533067%2C%2028.412825651302605%2C%2028.509018036072145%2C%2028.605210420841683%2C%2028.701402805611224%2C%2028.79759519038076%2C%2028.893787575150302%2C%2028.98997995991984%2C%2029.08617234468938%2C%2029.182364729458918%2C%2029.278557114228455%2C%2029.374749498997996%2C%2029.470941883767534%2C%2029.567134268537075%2C%2029.663326653306612%2C%2029.759519038076153%2C%2029.85571142284569%2C%2029.95190380761523%2C%2030.04809619238477%2C%2030.14428857715431%2C%2030.240480961923847%2C%2030.336673346693388%2C%2030.432865731462925%2C%2030.529058116232466%2C%2030.625250501002004%2C%2030.721442885771545%2C%2030.817635270541082%2C%2030.91382765531062%2C%2031.01002004008016%2C%2031.106212424849698%2C%2031.20240480961924%2C%2031.298597194388776%2C%2031.394789579158317%2C%2031.490981963927855%2C%2031.587174348697395%2C%2031.683366733466933%2C%2031.779559118236474%2C%2031.87575150300601%2C%2031.971943887775552%2C%2032.06813627254509%2C%2032.16432865731463%2C%2032.260521042084164%2C%2032.35671342685371%2C%2032.452905811623246%2C%2032.54909819639279%2C%2032.64529058116233%2C%2032.741482965931866%2C%2032.8376753507014%2C%2032.93386773547094%2C%2033.03006012024048%2C%2033.126252505010015%2C%2033.22244488977956%2C%2033.3186372745491%2C%2033.41482965931864%2C%2033.51102204408818%2C%2033.607214428857716%2C%2033.703406813627254%2C%2033.79959919839679%2C%2033.89579158316633%2C%2033.99198396793587%2C%2034.08817635270541%2C%2034.184368737474955%2C%2034.28056112224449%2C%2034.37675350701403%2C%2034.47294589178357%2C%2034.569138276553105%2C%2034.66533066132264%2C%2034.76152304609218%2C%2034.857715430861724%2C%2034.95390781563126%2C%2035.050100200400806%2C%2035.14629258517034%2C%2035.24248496993988%2C%2035.33867735470942%2C%2035.434869739478955%2C%2035.53106212424849%2C%2035.62725450901804%2C%2035.723446893787575%2C%2035.81963927855712%2C%2035.91583166332666%2C%2036.012024048096194%2C%2036.10821643286573%2C%2036.20440881763527%2C%2036.300601202404806%2C%2036.39679358717434%2C%2036.49298597194389%2C%2036.589178356713425%2C%2036.68537074148297%2C%2036.78156312625251%2C%2036.877755511022045%2C%2036.97394789579158%2C%2037.07014028056112%2C%2037.16633266533066%2C%2037.2625250501002%2C%2037.35871743486974%2C%2037.45490981963928%2C%2037.55110220440882%2C%2037.64729458917836%2C%2037.743486973947896%2C%2037.83967935871743%2C%2037.93587174348697%2C%2038.032064128256515%2C%2038.12825651302605%2C%2038.22444889779559%2C%2038.32064128256513%2C%2038.41683366733467%2C%2038.51302605210421%2C%2038.609218436873746%2C%2038.705410821643284%2C%2038.80160320641283%2C%2038.897795591182366%2C%2038.9939879759519%2C%2039.09018036072144%2C%2039.186372745490985%2C%2039.28256513026052%2C%2039.37875751503006%2C%2039.4749498997996%2C%2039.57114228456914%2C%2039.66733466933868%2C%2039.763527054108216%2C%2039.859719438877754%2C%2039.95591182364729%2C%2040.052104208416836%2C%2040.14829659318637%2C%2040.24448897795591%2C%2040.34068136272545%2C%2040.43687374749499%2C%2040.53306613226453%2C%2040.62925851703407%2C%2040.725450901803605%2C%2040.82164328657315%2C%2040.91783567134269%2C%2041.014028056112224%2C%2041.11022044088176%2C%2041.206412825651306%2C%2041.30260521042084%2C%2041.39879759519038%2C%2041.49498997995992%2C%2041.591182364729455%2C%2041.687374749499%2C%2041.78356713426854%2C%2041.879759519038075%2C%2041.97595190380761%2C%2042.07214428857716%2C%2042.168336673346694%2C%2042.26452905811623%2C%2042.36072144288577%2C%2042.45691382765531%2C%2042.55310621242485%2C%2042.64929859719439%2C%2042.745490981963925%2C%2042.84168336673347%2C%2042.93787575150301%2C%2043.034068136272545%2C%2043.13026052104208%2C%2043.22645290581163%2C%2043.322645290581164%2C%2043.4188376753507%2C%2043.51503006012024%2C%2043.611222444889776%2C%2043.70741482965932%2C%2043.80360721442886%2C%2043.899799599198396%2C%2043.99599198396793%2C%2044.09218436873748%2C%2044.188376753507015%2C%2044.28456913827655%2C%2044.38076152304609%2C%2044.476953907815634%2C%2044.57314629258517%2C%2044.66933867735471%2C%2044.765531062124246%2C%2044.86172344689379%2C%2044.95791583166333%2C%2045.054108216432866%2C%2045.1503006012024%2C%2045.24649298597194%2C%2045.342685370741485%2C%2045.43887775551102%2C%2045.53507014028056%2C%2045.6312625250501%2C%2045.72745490981964%2C%2045.82364729458918%2C%2045.91983967935872%2C%2046.016032064128254%2C%2046.1122244488978%2C%2046.208416833667336%2C%2046.30460921843687%2C%2046.40080160320641%2C%2046.496993987975955%2C%2046.59318637274549%2C%2046.68937875751503%2C%2046.78557114228457%2C%2046.88176352705411%2C%2046.97795591182365%2C%2047.07414829659319%2C%2047.170340681362724%2C%2047.26653306613226%2C%2047.362725450901806%2C%2047.45891783567134%2C%2047.55511022044088%2C%2047.65130260521042%2C%2047.74749498997996%2C%2047.8436873747495%2C%2047.93987975951904%2C%2048.036072144288575%2C%2048.13226452905812%2C%2048.22845691382766%2C%2048.324649298597194%2C%2048.42084168336673%2C%2048.517034068136276%2C%2048.61322645290581%2C%2048.70941883767535%2C%2048.80561122244489%2C%2048.901803607214426%2C%2048.99799599198397%2C%2049.09418837675351%2C%2049.190380761523045%2C%2049.28657314629258%2C%2049.38276553106213%2C%2049.478957915831664%2C%2049.5751503006012%2C%2049.67134268537074%2C%2049.76753507014028%2C%2049.86372745490982%2C%2049.95991983967936%2C%2050.056112224448896%2C%2050.15230460921844%2C%2050.24849699398798%2C%2050.344689378757515%2C%2050.44088176352705%2C%2050.53707414829659%2C%2050.633266533066134%2C%2050.72945891783567%2C%2050.82565130260521%2C%2050.921843687374746%2C%2051.01803607214429%2C%2051.11422845691383%2C%2051.210420841683366%2C%2051.3066132264529%2C%2051.40280561122245%2C%2051.498997995991985%2C%2051.59519038076152%2C%2051.69138276553106%2C%2051.787575150300604%2C%2051.88376753507014%2C%2051.97995991983968%2C%2052.07615230460922%2C%2052.17234468937876%2C%2052.2685370741483%2C%2052.364729458917836%2C%2052.46092184368737%2C%2052.55711422845691%2C%2052.653306613226455%2C%2052.74949899799599%2C%2052.84569138276553%2C%2052.94188376753507%2C%2053.03807615230461%2C%2053.13426853707415%2C%2053.23046092184369%2C%2053.326653306613224%2C%2053.42284569138277%2C%2053.519038076152306%2C%2053.61523046092184%2C%2053.71142284569138%2C%2053.807615230460925%2C%2053.90380761523046%2C%2054.0%5D%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20.range%28%5B%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23f7fcfdff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23e0ecf4ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%23bfd3e6ff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%239ebcdaff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c96c6ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%238c6bb1ff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%2388419dff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%23810f7cff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%2C%20%27%234d004bff%27%5D%29%3B%0A%20%20%20%20%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.x%20%3D%20d3.scale.linear%28%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20.domain%28%5B6.0%2C%2054.0%5D%29%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20.range%28%5B0%2C%20400%5D%29%3B%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.legend%20%3D%20L.control%28%7Bposition%3A%20%27topright%27%7D%29%3B%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.legend.onAdd%20%3D%20function%20%28map%29%20%7Bvar%20div%20%3D%20L.DomUtil.create%28%27div%27%2C%20%27legend%27%29%3B%20return%20div%7D%3B%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.legend.addTo%28map_7c415fc94a274a389a7c2cfec9c1ab7c%29%3B%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.xAxis%20%3D%20d3.svg.axis%28%29%0A%20%20%20%20%20%20%20%20.scale%28color_map_546ff9419da9472486889486cb0a7331.x%29%0A%20%20%20%20%20%20%20%20.orient%28%22top%22%29%0A%20%20%20%20%20%20%20%20.tickSize%281%29%0A%20%20%20%20%20%20%20%20.tickValues%28%5B6%2C%2011%2C%2016%2C%2022%2C%2027%2C%2032%2C%2038%2C%2043%2C%2048%2C%2054%5D%29%3B%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.svg%20%3D%20d3.select%28%22.legend.leaflet-control%22%29.append%28%22svg%22%29%0A%20%20%20%20%20%20%20%20.attr%28%22id%22%2C%20%27legend%27%29%0A%20%20%20%20%20%20%20%20.attr%28%22width%22%2C%20450%29%0A%20%20%20%20%20%20%20%20.attr%28%22height%22%2C%2040%29%3B%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.g%20%3D%20color_map_546ff9419da9472486889486cb0a7331.svg.append%28%22g%22%29%0A%20%20%20%20%20%20%20%20.attr%28%22class%22%2C%20%22key%22%29%0A%20%20%20%20%20%20%20%20.attr%28%22transform%22%2C%20%22translate%2825%2C16%29%22%29%3B%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.g.selectAll%28%22rect%22%29%0A%20%20%20%20%20%20%20%20.data%28color_map_546ff9419da9472486889486cb0a7331.color.range%28%29.map%28function%28d%2C%20i%29%20%7B%0A%20%20%20%20%20%20%20%20%20%20return%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20x0%3A%20i%20%3F%20color_map_546ff9419da9472486889486cb0a7331.x%28color_map_546ff9419da9472486889486cb0a7331.color.domain%28%29%5Bi%20-%201%5D%29%20%3A%20color_map_546ff9419da9472486889486cb0a7331.x.range%28%29%5B0%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20x1%3A%20i%20%3C%20color_map_546ff9419da9472486889486cb0a7331.color.domain%28%29.length%20%3F%20color_map_546ff9419da9472486889486cb0a7331.x%28color_map_546ff9419da9472486889486cb0a7331.color.domain%28%29%5Bi%5D%29%20%3A%20color_map_546ff9419da9472486889486cb0a7331.x.range%28%29%5B1%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20z%3A%20d%0A%20%20%20%20%20%20%20%20%20%20%7D%3B%0A%20%20%20%20%20%20%20%20%7D%29%29%0A%20%20%20%20%20%20.enter%28%29.append%28%22rect%22%29%0A%20%20%20%20%20%20%20%20.attr%28%22height%22%2C%2010%29%0A%20%20%20%20%20%20%20%20.attr%28%22x%22%2C%20function%28d%29%20%7B%20return%20d.x0%3B%20%7D%29%0A%20%20%20%20%20%20%20%20.attr%28%22width%22%2C%20function%28d%29%20%7B%20return%20d.x1%20-%20d.x0%3B%20%7D%29%0A%20%20%20%20%20%20%20%20.style%28%22fill%22%2C%20function%28d%29%20%7B%20return%20d.z%3B%20%7D%29%3B%0A%0A%20%20%20%20color_map_546ff9419da9472486889486cb0a7331.g.call%28color_map_546ff9419da9472486889486cb0a7331.xAxis%29.append%28%22text%22%29%0A%20%20%20%20%20%20%20%20.attr%28%22class%22%2C%20%22caption%22%29%0A%20%20%20%20%20%20%20%20.attr%28%22y%22%2C%2021%29%0A%20%20%20%20%20%20%20%20.text%28%27Percentage%20of%20delayed%20flights%27%29%3B%0A%3C/script%3E onload="this.contentDocument.open();this.contentDocument.write( decodeURIComponent(this.getAttribute('data-html')));this.contentDocument.close();" allowfullscreen webkitallowfullscreen mozallowfullscreen>&lt;/iframe>&lt;/div>&lt;/div>
&lt;h2 id="summary-of-eda">Summary of EDA&lt;/h2>
&lt;ul>
&lt;li>Many factors involved in departure delays - weather, time of day, airline carrier, destination airport&lt;/li>
&lt;li>Uncertain of the importance of each one&lt;/li>
&lt;li>Move to a model to gain insight on factors contribution to departure delay&lt;/li>
&lt;/ul></description></item><item><title>Goodreads</title><link>https://abraae.netlify.app/project/goodreads/</link><pubDate>Fri, 10 Sep 2021 00:00:00 +0000</pubDate><guid>https://abraae.netlify.app/project/goodreads/</guid><description>&lt;p>This is the very first homework assignment from my CodeClan course. Included here as I love books! Also because the clean up was more tricky than originally intended.&lt;/p>
&lt;h1 id="data-cleaning">Data cleaning&lt;/h1>
&lt;ul>
&lt;li>Initially reading in the data generated a parsing error due to mislabeled quotes
&lt;ul>
&lt;li>This was fixed by including &lt;code>quote = &amp;quot;&amp;quot;&lt;/code> in the &lt;code>read_csv()&lt;/code>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>12 parsing errors remained in the data
&lt;ul>
&lt;li>Investigating with &lt;code>problems()&lt;/code> revealed four rows with data that has skipped a column because of an extra comma in the authors column&lt;/li>
&lt;li>These commas were manually removed&lt;/li>
&lt;li>The &lt;code>.csv&lt;/code> was resaved as &lt;code>books_edit.csv&lt;/code>&lt;/li>
&lt;/ul>
&lt;/li>
&lt;li>Missing pages were recoded as missing (&lt;code>NA&lt;/code>) if page number was zero&lt;/li>
&lt;li>Average ratings were recoded as &lt;code>NA&lt;/code> if average_rating = 0 and ratings_count &amp;gt; 0
(you can&amp;rsquo;t have an average rating of nothing if you have had a rating count)&lt;/li>
&lt;li>Ratings count were recoded as &lt;code>NA&lt;/code> if average_rating &amp;gt; 0 and ratings_count = 0
(you can&amp;rsquo;t have a rating count of nothing if there is an average rating score)&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-r">library(tidyverse)
library(here)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-r">books_clean &amp;lt;- read_csv(here(&amp;quot;./content/project/2021-09-10-goodreads/clean_data/books_clean.csv&amp;quot;))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>##
## ── Column specification ────────────────────────────────────────────────────────
## cols(
## book_id = col_double(),
## title = col_character(),
## authors = col_character(),
## average_rating = col_double(),
## isbn = col_character(),
## isbn13 = col_character(),
## language_code = col_character(),
## num_pages = col_double(),
## ratings_count = col_double(),
## text_reviews_count = col_double(),
## publication_date = col_character(),
## publisher = col_character()
## )
&lt;/code>&lt;/pre>
&lt;h2 id="looking-at-the-authors">Looking at the authors&lt;/h2>
&lt;h4 id="questions-i-want-to-answer">Questions I want to answer:&lt;/h4>
&lt;ul>
&lt;li>How many different authors are there?&lt;/li>
&lt;li>Who are the top ten most rated authors (based on rating count)?&lt;/li>
&lt;li>Who are the ten authors with the longest books?&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-r">#count all the unique authors
books_clean %&amp;gt;%
distinct(authors) %&amp;gt;%
count()
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 1 x 1
## n
## &amp;lt;int&amp;gt;
## 1 6643
&lt;/code>&lt;/pre>
&lt;p>&lt;br />
There are 6643 different authors listed. However, I note some authors may be listed more than once if they are coauthors.&lt;/p>
&lt;p>Let&amp;rsquo;s look at the top ten authors based on total number of reviews.&lt;/p>
&lt;pre>&lt;code class="language-r">author_subset &amp;lt;- books_clean %&amp;gt;%
select(authors, title, ratings_count, num_pages)
reviewed_top_ten &amp;lt;- author_subset %&amp;gt;%
slice_max(ratings_count, n = 10)
reviewed_top_ten
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 10 x 4
## authors title ratings_count num_pages
## &amp;lt;chr&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt; &amp;lt;dbl&amp;gt;
## 1 Stephenie Meyer Twilight (Twilight #1) 4597666 501
## 2 J.R.R. Tolkien The Hobbit or There and Back… 2530894 366
## 3 J.D. Salinger The Catcher in the Rye 2457092 277
## 4 Dan Brown Angels &amp;amp; Demons (Robert Langd… 2418736 736
## 5 J.K. Rowling/Mary Gra… Harry Potter and the Prisoner… 2339585 435
## 6 J.K. Rowling/Mary Gra… Harry Potter and the Chamber … 2293963 341
## 7 J.K. Rowling/Mary Gra… Harry Potter and the Order of… 2153167 870
## 8 J.R.R. Tolkien The Fellowship of the Ring (T… 2128944 398
## 9 George Orwell/Boris G… Animal Farm 2111750 122
## 10 J.K. Rowling/Mary Gra… Harry Potter and the Half-Blo… 2095690 652
&lt;/code>&lt;/pre>
&lt;p>&lt;br />&lt;/p>
&lt;p>Looks like Stephenie Meyer with the first Twilight book has received the most ratings on Goodreads! J.K. Rowling also features several times in the top ten most rated authors.&lt;/p>
&lt;p>Now I will have a look at the authors with the longest books.&lt;/p>
&lt;pre>&lt;code class="language-r">longest_top_ten &amp;lt;- author_subset %&amp;gt;%
slice_max(num_pages, n = 10)
longest_top_ten
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 10 x 4
## authors title ratings_count num_pages
## &amp;lt;chr&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt; &amp;lt;dbl&amp;gt;
## 1 Patrick O'Brian The Complete Aubrey/Matu… 1338 6576
## 2 Winston S. Churchill/John … The Second World War 1493 4736
## 3 Marcel Proust/C.K. Scott M… Remembrance of Things Pa… 6 3400
## 4 J.K. Rowling Harry Potter Collection … 28242 3342
## 5 Thomas Aquinas Summa Theologica 5 Vols 2734 3020
## 6 Dennis L. Kasper/Dan L. Lo… Harrison's Principles of… 23 2751
## 7 J.K. Rowling/Mary GrandPré Harry Potter Boxed Set … 41428 2690
## 8 Terry Goodkind The Sword of Truth Boxe… 4196 2480
## 9 Christina Scull/Wayne G. H… The J.R.R. Tolkien Compa… 45 2264
## 10 Anonymous Study Bible: NIV 4166 2198
&lt;/code>&lt;/pre>
&lt;p>&lt;br />&lt;/p>
&lt;p>Ah, this was a bit of a trick question as the books listed with the highest page numbers are mostly box sets! Interestingly, two J.K. Rowling box sets feature in this list.&lt;/p>
&lt;p>&lt;br />&lt;/p>
&lt;h2 id="looking-at-the-languages">Looking at the languages&lt;/h2>
&lt;p>I would like to have a look at the different languages of books in this dataset.&lt;/p>
&lt;h4 id="questions-i-want-to-answer-1">Questions I want to answer:&lt;/h4>
&lt;ul>
&lt;li>How many languages are there?&lt;/li>
&lt;li>How many text reviews do books written in English have?&lt;/li>
&lt;li>How many text reviews do books written in non-English have?&lt;/li>
&lt;li>Is this count similar for the overall ratings received for English and non-English books?&lt;/li>
&lt;li>Who are the top ten publishers of English books?&lt;/li>
&lt;li>Who are the top ten publishers of non-English books?&lt;/li>
&lt;/ul>
&lt;pre>&lt;code class="language-r">#counting how many languages there are and arranging them alphabetically
books_clean %&amp;gt;%
distinct(language_code) %&amp;gt;%
arrange(language_code)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 27 x 1
## language_code
## &amp;lt;chr&amp;gt;
## 1 ale
## 2 ara
## 3 en-CA
## 4 en-GB
## 5 en-US
## 6 eng
## 7 enm
## 8 fre
## 9 ger
## 10 gla
## # … with 17 more rows
&lt;/code>&lt;/pre>
&lt;p>&lt;br />&lt;/p>
&lt;p>There are 27 different languages in the books dataset. It looks like English is coded four times: eng (which is not a localisation language code), en-US, en-GB and en-CA. (Additional note: enm is middle english, so I will not include this as an English book).&lt;/p>
&lt;p>Let&amp;rsquo;s find out what the total text_reviews_count and ratings_count is in all four English groups compared to all other languages.&lt;/p>
&lt;pre>&lt;code class="language-r">#subset the dataset to answer the questions on English books
#add a column, english, set to TRUE if the language is English
language_subset &amp;lt;- books_clean %&amp;gt;%
select(language_code, publisher, ratings_count, text_reviews_count) %&amp;gt;%
mutate(english = case_when(
language_code %in% c(&amp;quot;eng&amp;quot;, &amp;quot;en-GB&amp;quot;, &amp;quot;en-CA&amp;quot;, &amp;quot;en-US&amp;quot;) ~ TRUE,
TRUE ~ FALSE)
)
#generate a summary table counting the total number of text reviews and ratings counts for English and non-English books
language_subset %&amp;gt;%
group_by(english) %&amp;gt;%
summarise(
sum(text_reviews_count),
sum(ratings_count, na.rm = TRUE))
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 2 x 3
## english `sum(text_reviews_count)` `sum(ratings_count, na.rm = TRUE)`
## &amp;lt;lgl&amp;gt; &amp;lt;dbl&amp;gt; &amp;lt;dbl&amp;gt;
## 1 FALSE 31823 1560813
## 2 TRUE 5997392 198017611
&lt;/code>&lt;/pre>
&lt;p>&lt;br />&lt;/p>
&lt;p>Unsurprisingly perhaps, there are far more text reviews for books written in English (eng, en-GB, en-US and en-CA) than in all other languages combined (5997392 compared to 31823). If we put it as a percentage, 99.47% of the text reviews in this Goodreads dataset are written for English books, and only 0.53% of the text reviews are in another language.&lt;/p>
&lt;p>This is also seen when looking at the total for all ratings count (198017611 ratings for English books compared to 1560813, or 78.2% of ratings compared to 21.8%).&lt;/p>
&lt;p>Let&amp;rsquo;s look at the publishers with the most English titles and the publishers with the most non-English titles.&lt;/p>
&lt;pre>&lt;code class="language-r">publisher_subset &amp;lt;- language_subset %&amp;gt;%
group_by(publisher) %&amp;gt;%
mutate(non_english = !english) %&amp;gt;%
summarise(
tot_eng = sum(english),
tot_non_eng = sum(non_english)
)
publisher_subset
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 2,293 x 3
## publisher tot_eng tot_non_eng
## &amp;lt;chr&amp;gt; &amp;lt;int&amp;gt; &amp;lt;int&amp;gt;
## 1 &amp;quot;\&amp;quot;Tarcher\&amp;quot;&amp;quot; 1 0
## 2 &amp;quot;10/18&amp;quot; 0 2
## 3 &amp;quot;1st Book Library&amp;quot; 1 0
## 4 &amp;quot;1st World Library&amp;quot; 1 0
## 5 &amp;quot;A &amp;amp; C Black (Childrens books)&amp;quot; 1 0
## 6 &amp;quot;A Harvest Book/Harcourt Inc.&amp;quot; 1 0
## 7 &amp;quot;A K PETERS&amp;quot; 1 0
## 8 &amp;quot;AA World Services&amp;quot; 1 0
## 9 &amp;quot;Abacus&amp;quot; 6 0
## 10 &amp;quot;Abacus Books&amp;quot; 1 0
## # … with 2,283 more rows
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-r">#select publishers with the most books in English
top_eng_publishers &amp;lt;- publisher_subset %&amp;gt;%
slice_max(tot_eng, n = 10)
top_eng_publishers
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 10 x 3
## publisher tot_eng tot_non_eng
## &amp;lt;chr&amp;gt; &amp;lt;int&amp;gt; &amp;lt;int&amp;gt;
## 1 Vintage 317 1
## 2 Penguin Books 261 0
## 3 Penguin Classics 183 1
## 4 Mariner Books 149 1
## 5 Ballantine Books 143 1
## 6 HarperCollins 112 0
## 7 Pocket Books 111 0
## 8 Bantam 110 0
## 9 Harper Perennial 110 2
## 10 VIZ Media LLC 88 0
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-r">#Select publishers with the most books in non-English
top_non_eng_publishers &amp;lt;- publisher_subset %&amp;gt;%
slice_max(tot_non_eng, n = 10)
top_non_eng_publishers
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 11 x 3
## publisher tot_eng tot_non_eng
## &amp;lt;chr&amp;gt; &amp;lt;int&amp;gt; &amp;lt;int&amp;gt;
## 1 Debolsillo 1 17
## 2 Gallimard 1 15
## 3 小学館 0 15
## 4 Pocket 3 14
## 5 Planeta Publishing 0 13
## 6 Plaza y Janes 1 13
## 7 集英社 0 12
## 8 J'ai Lu 0 10
## 9 Ediciones B 0 9
## 10 Glénat 0 9
## 11 Punto de Lectura 0 9
&lt;/code>&lt;/pre>
&lt;p>&lt;br />&lt;/p>
&lt;p>The top ten publishers with the most English titles are very different from the top ten publishers with the most non-English titles! Interestingly in both groups there are some book titles in other languages. The top ten publishers with non-English titles contains 11 publishers. This is because there are several publishers with the same total count of non-English books.&lt;/p></description></item><item><title>Halloween Candy</title><link>https://abraae.netlify.app/project/halloween-candy/</link><pubDate>Sat, 31 Jul 2021 00:00:00 +0000</pubDate><guid>https://abraae.netlify.app/project/halloween-candy/</guid><description>&lt;p>This data comes from the &lt;a href="https://www.scq.ubc.ca/so-much-candy-data-seriously/" target="_blank" rel="noopener">candy hierarchy data&lt;/a> which was published annually around Halloween from 2014 to 2017. I used the 2015, 2016 and 2017 data sets. The raw data for 2014 is not available and so I did not include it.&lt;/p>
&lt;p>The data was generated from an online survey of thousands of people from around the world, assessing their joy, despair or ambivalence to a wide range of Halloween candy and non-candy items.&lt;/p>
&lt;p>There are a lot of free text columns and a range of auxiliary non-candy related questions in the survey. The main goal of this project was to gain experience cleaning and wrangling a real world data set. And oh how the halloween candy delivered on this! However this did mean that I didn&amp;rsquo;t have much time to explore and visualise the data. So now I will take a closer look.&lt;/p>
&lt;h2 id="data-cleaning">Data cleaning&lt;/h2>
&lt;p>The full cleaning scripts can be found in my &lt;a href="https://github.com/axbraae/data_cleaning_and_wrangling/tree/main/halloween_candy" target="_blank" rel="noopener">GitHub repository&lt;/a>.&lt;/p>
&lt;p>Summary of the steps taken to clean the data:&lt;/p>
&lt;ul>
&lt;li>column names cleaned&lt;/li>
&lt;li>columns were selected based on downstream analyses required in the brief&lt;/li>
&lt;li>missing values were corrected or recoded where possible, otherwise they were left in the data&lt;/li>
&lt;li>the country column was recoded to US, UK, Canada or Other&lt;/li>
&lt;li>the three datasets were transformed from wide to long format&lt;/li>
&lt;li>age was limited to reasonable values&lt;/li>
&lt;li>a confectionery column was added to select conventional candy for analyses&lt;/li>
&lt;li>the column selection and age limiting were common tasks across all three datasets. Therefore these were written as functions in a separate functions file&lt;/li>
&lt;/ul>
&lt;h2 id="assumptions">Assumptions&lt;/h2>
&lt;p>I made a number of assumptions when wrangling the data. Two of the more important are:&lt;/p>
&lt;ul>
&lt;li>I assumed that there was a data entry issue for the country column in 2016 and 2017. There were numbers entered into the country column where the corresponding age column was empty. I transferred these to the age column.&lt;/li>
&lt;li>I also assumed that the list of candy bars provided by the survey was exhaustive. I know this cannot be the case. I will assume that they include the most popular candy bars from the UK, US and Canada.&lt;/li>
&lt;/ul>
&lt;h1 id="analysis">Analysis&lt;/h1>
&lt;h2 id="exploratory-data-analysis">Exploratory Data Analysis&lt;/h2>
&lt;h4 id="how-many-candy-ratings-have-been-given">How many candy ratings have been given?&lt;/h4>
&lt;p>A total of 772352 candy ratings have been given over the three years. This is for all &amp;ldquo;candy&amp;rdquo; offered by the survey, including candy which is not a sweet. Breaking this down, 606609 ratings were given for candy you would find in a sweet shop and only 165743 ratings given for the inedible kind of candy.&lt;/p>
&lt;h4 id="what-is-the-demographic-of-people-completing-the-survey">What is the demographic of people completing the survey?&lt;/h4>
&lt;pre>&lt;code class="language-r">clean_candy %&amp;gt;%
filter(!is.na(going_trick_or_treat)) %&amp;gt;%
ggplot() +
aes(x = age, fill = going_trick_or_treat) +
geom_histogram(col = &amp;quot;white&amp;quot;, bins = 40) +
scale_fill_discrete_qualitative(
palette = &amp;quot;set 3&amp;quot;, nmax = 5, order = c(4, 1)) +
scale_x_continuous(breaks = seq(from = 0, to = 80, by = 10)) +
theme +
labs(
title = &amp;quot;What is the age range of survey takers?\n&amp;quot;,
x = &amp;quot;Age&amp;quot;,
y = &amp;quot;Total number\n&amp;quot;,
fill = &amp;quot;Going trick or\n treating?&amp;quot;
)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="https://abraae.netlify.app/project/halloween-candy/index_files/figure-html/unnamed-chunk-3-1.png" width="672" />&lt;/p>
&lt;p>The majority of surveyed individuals were not even going trick or treating! And the average age was overwhelmingly over eighteen sitting between 25 and 50 years old. For those going trick or treating there are two peaks in the age distribution, one around 13 and the other around 35.&lt;/p>
&lt;h4 id="does-candy-you-can-eat-give-you-more-joy">Does candy you can eat give you more joy?&lt;/h4>
&lt;pre>&lt;code class="language-r">clean_candy %&amp;gt;%
filter(!is.na(joy_induction)) %&amp;gt;%
mutate(confectionery = if_else(confectionery == TRUE, &amp;quot;Yes&amp;quot;, &amp;quot;No&amp;quot;)) %&amp;gt;%
ggplot() +
aes(x = confectionery, fill = joy_induction) +
geom_bar(position = &amp;quot;fill&amp;quot;) +
scale_fill_discrete_qualitative(
palette = &amp;quot;set 3&amp;quot;, nmax = 5, order = c(5, 1, 2)) +
theme +
labs(
title = &amp;quot;Satisfaction gained from edible and inedible candy\n&amp;quot;,
x = &amp;quot;Is it candy you can eat?&amp;quot;,
y = &amp;quot;Proportion of responses\n&amp;quot;,
fill = &amp;quot;Response&amp;quot;
)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="https://abraae.netlify.app/project/halloween-candy/index_files/figure-html/unnamed-chunk-4-1.png" width="672" />
&lt;br />&lt;/p>
&lt;p>If you can eat the candy, it does seem to bring more joy. The meh rating is also higher in edible candy and the despair rating is much lower.&lt;/p>
&lt;h4 id="just-how-bad-were-the-inedible-candy-ratings">Just how bad were the inedible candy ratings?&lt;/h4>
&lt;p>To quantify the ratings, I will count despair as -1, joy as +1 and meh as 0.&lt;/p>
&lt;pre>&lt;code class="language-r">rated_clean_candy &amp;lt;- clean_candy %&amp;gt;%
mutate(
rating = case_when(
joy_induction == &amp;quot;DESPAIR&amp;quot; ~ as.numeric(-1),
joy_induction == &amp;quot;JOY&amp;quot; ~ as.numeric(1),
joy_induction == &amp;quot;MEH&amp;quot; ~ as.numeric(0),
TRUE ~ NA_real_
)
)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code class="language-r">rated_clean_candy %&amp;gt;%
filter(confectionery == FALSE) %&amp;gt;%
group_by(candy) %&amp;gt;%
summarise(total_ratings = sum(rating, na.rm = TRUE)) %&amp;gt;%
ggplot() +
aes(x = total_ratings, y = reorder(candy, -total_ratings), fill =(total_ratings&amp;gt;0)) +
geom_col() +
scale_fill_discrete_qualitative(
palette = &amp;quot;set 3&amp;quot;, nmax = 5, order = c(1, 3)) +
theme_2 +
theme(legend.position = &amp;quot;none&amp;quot;) +
labs(
title = &amp;quot;What did inedible candy rate?&amp;quot;,
x = &amp;quot;Total ratings&amp;quot;,
y = &amp;quot;Inedible candy\n&amp;quot;
)
&lt;/code>&lt;/pre>
&lt;p>&lt;img src="https://abraae.netlify.app/project/halloween-candy/index_files/figure-html/unnamed-chunk-6-1.png" width="672" />&lt;/p>
&lt;p>The worst inedible candy are broken glow sticks closely followed by kale smoothies (inedible in my opition!) and white bread (also not candy!).&lt;/p>
&lt;h4 id="what-was-the-most-popular-candy-bar-in-each-year">What was the most popular candy bar in each year?&lt;/h4>
&lt;pre>&lt;code class="language-r">rated_clean_candy %&amp;gt;%
filter(confectionery == TRUE) %&amp;gt;%
select(year, candy, rating) %&amp;gt;%
group_by(year, candy) %&amp;gt;%
summarise(total_ratings = sum(rating, na.rm = TRUE)) %&amp;gt;%
slice_max(total_ratings)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 3 x 3
## # Groups: year [3]
## year candy total_ratings
## &amp;lt;dbl&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt;
## 1 2015 Any full-sized candy bar 4603
## 2 2016 Any full-sized candy bar 1037
## 3 2017 Any full-sized candy bar 1542
&lt;/code>&lt;/pre>
&lt;p>For all three years, &amp;ldquo;Any full-sized candy bar&amp;rdquo; was the most popular candy. To find the most popular branded bar, I will filter this candy out from the data and rerun it.&lt;/p>
&lt;pre>&lt;code class="language-r">rated_clean_candy %&amp;gt;%
filter(confectionery == TRUE,
candy != &amp;quot;Any full-sized candy bar&amp;quot;) %&amp;gt;%
select(year, candy, rating) %&amp;gt;%
group_by(year, candy) %&amp;gt;%
summarise(total_ratings = sum(rating, na.rm = TRUE)) %&amp;gt;%
slice_max(total_ratings)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 3 x 3
## # Groups: year [3]
## year candy total_ratings
## &amp;lt;dbl&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt;
## 1 2015 Reese’s Peanut Butter Cups 4375
## 2 2016 Kit Kat 920
## 3 2017 Reese’s Peanut Butter Cups 1403
&lt;/code>&lt;/pre>
&lt;p>The most popular branded candy bar was Reese&amp;rsquo;s Peanut Butter Cups in 2015 and 2017 and Kit Kat in 2016.&lt;/p>
&lt;h4 id="what-was-the-most-popular-candy-bar-by-this-rating-for-people-in-us-canada-uk-and-all-other-countries">What was the most popular candy bar by this rating for people in US, Canada, UK and all other countries?&lt;/h4>
&lt;p>To find the best scoring branded bar, filter out the &amp;ldquo;Any full-sized candy bar&amp;rdquo; chocolate.&lt;/p>
&lt;pre>&lt;code>## # A tibble: 4 x 3
## # Groups: country [4]
## country candy total_ratings
## &amp;lt;chr&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt;
## 1 canada Kit Kat 231
## 2 other Kit Kat 58
## 3 uk Lindt Truffle 36
## 4 us Reese’s Peanut Butter Cups 1983
&lt;/code>&lt;/pre>
&lt;p>Now we can see a clear divide in the countries favourite candy bars. Canada and the rest of the world prefer Kit Kat with a rating of 231 and 58. The UK prefers Lindt Truffle with a score of 36 and the US prefers Reese&amp;rsquo;s Peanut Butter Cups with a score of 1983.&lt;/p>
&lt;h1 id="other-interesting-analyses-or-conclusions">Other interesting analyses or conclusions&lt;/h1>
&lt;p>What about M&amp;amp;M&amp;rsquo;s? Let&amp;rsquo;s have a look at what the most popular M&amp;amp;M types are for each country.&lt;/p>
&lt;pre>&lt;code class="language-r">rated_clean_candy %&amp;gt;%
mutate(
m_n_m = if_else(str_detect(candy, &amp;quot;M&amp;amp;M&amp;quot;), TRUE, FALSE)) %&amp;gt;%
filter(confectionery == TRUE,
country != is.na(country),
candy != &amp;quot;Any full-sized candy bar&amp;quot;,
m_n_m == TRUE) %&amp;gt;%
select(country, candy, rating) %&amp;gt;%
group_by(country, candy) %&amp;gt;%
summarise(total_ratings = sum(rating, na.rm = TRUE)) %&amp;gt;%
slice_max(total_ratings)
&lt;/code>&lt;/pre>
&lt;pre>&lt;code>## # A tibble: 4 x 3
## # Groups: country [4]
## country candy total_ratings
## &amp;lt;chr&amp;gt; &amp;lt;chr&amp;gt; &amp;lt;dbl&amp;gt;
## 1 canada Regular M&amp;amp;Ms 172
## 2 other Peanut M&amp;amp;M’s 53
## 3 uk Regular M&amp;amp;Ms 27
## 4 us Peanut M&amp;amp;M’s 1645
&lt;/code>&lt;/pre>
&lt;p>It&amp;rsquo;s a debate between regular and peanut M&amp;amp;M&amp;rsquo;s. Canada and the UK rate regular M&amp;amp;M&amp;rsquo;s the highest with ratings of 172 and 27 respectively. The US and the rest of the world rate Peanut M&amp;amp;M&amp;rsquo;s the highest with ratings of 1645 and 53.&lt;/p>
&lt;p>It may be worth revisiting my earlier assumption that spliting the M&amp;amp;M&amp;rsquo;s and the Smarties were fine for this dataset. It would be interesting to see what all M&amp;amp;M&amp;rsquo;s combined score.&lt;/p></description></item></channel></rss>